home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / programming / emacs-complete / fsf / emacs / lisp / loaddefs.el < prev    next >
Text File  |  1994-10-17  |  289KB  |  6,611 lines

  1. ;;; loaddefs.el --- define standard autoloads and keys of other files
  2.  
  3. ;; Copyright (C) 1985,86,87,92,93,94 Free Software Foundation, Inc.
  4.  
  5. ;; Maintainer: FSF
  6. ;; Keywords: internal
  7.  
  8. ;; This file is part of GNU Emacs.
  9.  
  10. ;; GNU Emacs is free software; you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 2, or (at your option)
  13. ;; any later version.
  14.  
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. ;; GNU General Public License for more details.
  19.  
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  22. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  
  24. ;;; Commentary:
  25.  
  26. ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  27. ;;; Special formatting conventions are used in this file!
  28. ;;;
  29. ;;; a backslash-newline is used at the beginning of a documentation string
  30. ;;; when that string should be stored in the file etc/DOCnnn, not in core.
  31. ;;;
  32. ;;; Such strings read into Lisp as numbers (during the pure-loading phase).
  33. ;;;
  34. ;;; But you must obey certain rules to make sure the string is understood
  35. ;;; and goes into etc/DOCnnn properly.  Otherwise, the string will not go
  36. ;;; anywhere!
  37. ;;;
  38. ;;; The doc string must appear in the standard place in a call to
  39. ;;; defun, autoload, defvar or defconst.  No Lisp macros are recognized.
  40. ;;; The open-paren starting the definition must appear in column 0.
  41. ;;;
  42. ;;; In defvar and defconst, there is an additional rule:
  43. ;;; The double-quote that starts the string must be on the same
  44. ;;; line as the defvar or defconst.
  45. ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  46.  
  47. ;;; **********************************************************************
  48. ;;; You should never need to write autoloads by hand and put them here.
  49. ;;;
  50. ;;; It is no longer necessary.  Instead use autoload.el to maintain them
  51. ;;; for you.  Just insert ";;;###autoload" before defuns or defmacros you
  52. ;;; want to be autoloaded, or other forms you want copied into loaddefs.el
  53. ;;; (defvars, key definitions, etc.).  For example, 
  54. ;;;    ;;;###autoload
  55. ;;;    (defun foobar () ....)
  56. ;;;    ;;;###autoload (define-key global-map "f" 'foobar)
  57. ;;;    ;;;###autoload
  58. ;;;    (defvar foobar-var nil "\
  59. ;;;    This is foobar-var's doc-string.")
  60. ;;;
  61. ;;; Then do M-x update-file-autoloads on the file to update loaddefs.el.
  62. ;;;
  63. ;;; You can also use M-x update-directory-autoloads to update the autoloads
  64. ;;; in loaddefs.el for all .el files in the lisp/ directory, or M-x
  65. ;;; update-autoloads-here to update the autoloads for each file that
  66. ;;; already has an autoload section in this file.
  67. ;;; **********************************************************************
  68.  
  69. ;;; Code:
  70.  
  71. ;;; This code was NOT generated by autoload.el.
  72.  
  73. (defconst mode-line-buffer-identification (purecopy '("Emacs: %12b"))
  74.   "Mode-line control for identifying the buffer being displayed.
  75. Its default value is (\"Emacs: %12b\").  Major modes that edit things
  76. other than ordinary files may change this (e.g. Info, Dired,...)")
  77.  
  78. (make-variable-buffer-local 'mode-line-buffer-identification)
  79.  
  80. (defconst mode-line-process nil
  81.   "Mode-line control for displaying info on process status.
  82. Normally nil in most modes, since there is no process to display.")
  83.  
  84. (make-variable-buffer-local 'mode-line-process)
  85.  
  86. (defconst mode-line-modified (purecopy '("--%1*%1+-"))
  87.   "Mode-line control for displaying whether current buffer is modified.")
  88.  
  89. (make-variable-buffer-local 'mode-line-modified)
  90.  
  91. (setq-default mode-line-format
  92.   (list (purecopy "")
  93.    'mode-line-modified
  94.    'mode-line-buffer-identification
  95.    (purecopy "   ")
  96.    'global-mode-string
  97.    (purecopy "   %[(")
  98.    'mode-name 'mode-line-process 'minor-mode-alist
  99.    (purecopy "%n")
  100.    (purecopy ")%]--")
  101.    (purecopy '(line-number-mode "L%l--"))
  102.    (purecopy '(-3 . "%p"))
  103.    (purecopy "-%-")))
  104.  
  105. (defvar minor-mode-alist nil "\
  106. Alist saying how to show minor modes in the mode line.
  107. Each element looks like (VARIABLE STRING);
  108. STRING is included in the mode line iff VARIABLE's value is non-nil.
  109.  
  110. Actually, STRING need not be a string; any possible mode-line element
  111. is okay.  See `mode-line-format'.")
  112. (setq minor-mode-alist (mapcar 'purecopy
  113.                    '((abbrev-mode " Abbrev")
  114.                  (overwrite-mode overwrite-mode)
  115.                  (auto-fill-function " Fill")
  116.                  ;; not really a minor mode...
  117.                  (defining-kbd-macro " Def"))))
  118.  
  119. ;; These variables are used by autoloadable packages.
  120. ;; They are defined here so that they do not get overridden
  121. ;; by the loading of those packages.
  122.  
  123. ;; Names in directory that end in one of these
  124. ;; are ignored in completion,
  125. ;; making it more likely you will get a unique match.
  126. (setq completion-ignored-extensions
  127.       (cond ((eq system-type 'ms-dos)
  128.          '(".o" ".elc" "~" ".bin" ".bak" ".obj" ".map"
  129.            ".dvi" ".toc" ".log" ".aux" ".a" ".ln"
  130.            ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt"))
  131.         ((eq system-type 'vax-vms)
  132.          '(".obj" ".elc" ".exe" ".bin" ".lbin" ".sbin"
  133.            ".dvi" ".toc" ".log" ".aux"
  134.            ".lof" ".brn" ".rnt" ".mem" ".lni" ".lis"
  135.            ".olb" ".tlb" ".mlb" ".hlb" ".glo" ".idx" ".lot" ".fmt"))
  136.         (t
  137.          '(".o" ".elc" "~" ".bin" ".lbin" ".fasl"
  138.            ".dvi" ".toc" ".log" ".aux" ".a" ".ln"
  139.            ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt"))))
  140.       
  141. (make-variable-buffer-local 'indent-tabs-mode)
  142.  
  143. ;; This is here to avoid autoloading etags on M-TAB.
  144. ;; M-x visit-tags-table will autoload etags, which will redefine complete-tag.
  145. (defun complete-tag ()
  146.   "Perform tags completion on the text around point.
  147. Completes to the set of names listed in the current tags table.  
  148. The string to complete is chosen in the same way as the default
  149. for \\[find-tag] (which see)."
  150.   (interactive)
  151.   (error (substitute-command-keys
  152.       "No tags table loaded.  Try \\[visit-tags-table].")))
  153.  
  154. ;; Reduce total amount of space we must allocate during this function
  155. ;; that we will not need to keep permanently.
  156. (garbage-collect)
  157.  
  158. (define-key ctl-x-map "n" (make-sparse-keymap))
  159. (define-key ctl-x-map "r" (make-sparse-keymap))
  160.  
  161. ;These commands are defined in editfns.c
  162. ;but they are not assigned to keys there.
  163. (put 'narrow-to-region 'disabled t)
  164. (define-key ctl-x-map "nn" 'narrow-to-region)
  165. (define-key ctl-x-map "nw" 'widen)
  166. ;; (define-key ctl-x-map "n" 'narrow-to-region)
  167. ;; (define-key ctl-x-map "w" 'widen)
  168.  
  169. (define-key global-map "\C-j" 'newline-and-indent)
  170. (define-key global-map "\C-m" 'newline)
  171. (define-key global-map "\C-o" 'open-line)
  172. (define-key esc-map "\C-o" 'split-line)
  173. (define-key global-map "\C-q" 'quoted-insert)
  174. (define-key esc-map "^" 'delete-indentation)
  175. (define-key esc-map "\\" 'delete-horizontal-space)
  176. (define-key esc-map "m" 'back-to-indentation)
  177. (define-key ctl-x-map "\C-o" 'delete-blank-lines)
  178. (define-key esc-map " " 'just-one-space)
  179. (define-key esc-map "z" 'zap-to-char)
  180. (define-key esc-map "=" 'count-lines-region)
  181. (define-key ctl-x-map "=" 'what-cursor-position)
  182. ;; This key sequence might cause a certain amount of trouble with function
  183. ;; keys.  Namely, it means you can't bind ESC followed by a function key.
  184. ;; However, people might not mind that too terribly much.
  185. ;; So I will leave this alone for now.
  186. (define-key esc-map "\e" 'eval-expression)
  187. ;; Changed from C-x ESC so that function keys work following C-x.
  188. (define-key ctl-x-map "\e\e" 'repeat-complex-command)
  189. (define-key ctl-x-map "u" 'advertised-undo)
  190. ;; Many people are used to typing C-/ on X terminals and getting C-_.
  191. (define-key global-map [?\C-/] 'undo)
  192. (define-key global-map "\C-_" 'undo)
  193. (define-key esc-map "!" 'shell-command)
  194. (define-key esc-map "|" 'shell-command-on-region)
  195.  
  196. (define-key global-map "\C-u" 'universal-argument)
  197. (let ((i ?0))
  198.   (while (<= i ?9)
  199.     (define-key esc-map (char-to-string i) 'digit-argument)
  200.     (setq i (1+ i))))
  201. (define-key esc-map "-" 'negative-argument)
  202. ;; Define control-digits.
  203. (let ((i ?0))
  204.   (while (<= i ?9)
  205.     (define-key global-map (read (format "[?\\C-%c]" i)) 'digit-argument)
  206.     (setq i (1+ i))))
  207. (define-key global-map [?\C--] 'negative-argument)
  208. ;; Define control-meta-digits.
  209. (let ((i ?0))
  210.   (while (<= i ?9)
  211.     (define-key esc-map (read (format "[?\\C-%c]" i)) 'digit-argument)
  212.     (setq i (1+ i))))
  213. (define-key global-map [?\C-\M--] 'negative-argument)
  214.  
  215. (define-key global-map "\C-k" 'kill-line)
  216. (define-key global-map "\C-w" 'kill-region)
  217. (define-key esc-map "w" 'kill-ring-save)
  218. (define-key esc-map "\C-w" 'append-next-kill)
  219. (define-key global-map "\C-y" 'yank)
  220. (define-key esc-map "y" 'yank-pop)
  221.  
  222. ;; (define-key ctl-x-map "a" 'append-to-buffer)
  223.  
  224. (define-key global-map "\C-@" 'set-mark-command)
  225. ;; Many people are used to typing C-SPC and getting C-@.
  226. (define-key global-map [?\C-\ ] 'set-mark-command)
  227. (define-key ctl-x-map "\C-x" 'exchange-point-and-mark)
  228. (define-key ctl-x-map "\C-@" 'pop-global-mark)
  229. (define-key ctl-x-map [?\C-\ ] 'pop-global-mark)
  230.  
  231. (define-key global-map "\C-n" 'next-line)
  232. (define-key global-map "\C-p" 'previous-line)
  233. (define-key ctl-x-map "\C-n" 'set-goal-column)
  234.  
  235. ;;(defun function-key-error ()
  236. ;;  (interactive)
  237. ;;  (error "That function key is not bound to anything."))
  238.  
  239. ;; Apparently some terminals have a labeled help key.
  240. (define-key function-key-map [help] "\C-h")
  241. (define-key global-map [menu] 'execute-extended-command)
  242. (define-key global-map [find] 'search-forward)
  243.  
  244. ;; natural bindings for terminal keycaps --- defined in X keysym order
  245. (define-key global-map [home]        'beginning-of-buffer)
  246. (define-key global-map [M-home]        'beginning-of-buffer-other-window)
  247. (define-key global-map [left]        'backward-char)
  248. (define-key global-map [up]        'previous-line)
  249. (define-key global-map [right]        'forward-char)
  250. (define-key global-map [down]        'next-line)
  251. (define-key global-map [prior]        'scroll-down)
  252. (define-key global-map [next]        'scroll-up)
  253. (define-key global-map [M-next]        'scroll-other-window)
  254. (define-key global-map [M-prior]    'scroll-other-window-down)
  255. (define-key global-map [end]        'end-of-buffer)
  256. (define-key global-map [M-end]        'end-of-buffer-other-window)
  257. (define-key global-map [begin]        'beginning-of-buffer)
  258. ;; (define-key global-map [select]        'function-key-error)
  259. ;; (define-key global-map [print]        'function-key-error)
  260. (define-key global-map [execute]    'execute-extended-command)
  261. (define-key global-map [insert]        'overwrite-mode)
  262. (define-key global-map [undo]        'undo)
  263. (define-key global-map [redo]        'repeat-complex-command)
  264. ;; (define-key global-map [clearline]    'function-key-error)
  265. (define-key global-map [insertline]    'open-line)
  266. (define-key global-map [deleteline]    'kill-line)
  267. ;; (define-key global-map [insertchar]    'function-key-error)
  268. (define-key global-map [deletechar]    'delete-char)
  269. ;; (define-key global-map [backtab]    'function-key-error)
  270. ;; (define-key global-map [f1]        'function-key-error)
  271. ;; (define-key global-map [f2]        'function-key-error)
  272. ;; (define-key global-map [f3]        'function-key-error)
  273. ;; (define-key global-map [f4]        'function-key-error)
  274. ;; (define-key global-map [f5]        'function-key-error)
  275. ;; (define-key global-map [f6]        'function-key-error)
  276. ;; (define-key global-map [f7]        'function-key-error)
  277. ;; (define-key global-map [f8]        'function-key-error)
  278. ;; (define-key global-map [f9]        'function-key-error)
  279. ;; (define-key global-map [f10]        'function-key-error)
  280. ;; (define-key global-map [f11]        'function-key-error)
  281. ;; (define-key global-map [f12]        'function-key-error)
  282. ;; (define-key global-map [f13]        'function-key-error)
  283. ;; (define-key global-map [f14]        'function-key-error)
  284. ;; (define-key global-map [f15]        'function-key-error)
  285. ;; (define-key global-map [f16]        'function-key-error)
  286. ;; (define-key global-map [f17]        'function-key-error)
  287. ;; (define-key global-map [f18]        'function-key-error)
  288. ;; (define-key global-map [f19]        'function-key-error)
  289. ;; (define-key global-map [f20]        'function-key-error)
  290. ;; (define-key global-map [f21]        'function-key-error)
  291. ;; (define-key global-map [f22]        'function-key-error)
  292. ;; (define-key global-map [f23]        'function-key-error)
  293. ;; (define-key global-map [f24]        'function-key-error)
  294. ;; (define-key global-map [f25]        'function-key-error)
  295. ;; (define-key global-map [f26]        'function-key-error)
  296. ;; (define-key global-map [f27]        'function-key-error)
  297. ;; (define-key global-map [f28]        'function-key-error)
  298. ;; (define-key global-map [f29]        'function-key-error)
  299. ;; (define-key global-map [f30]        'function-key-error)
  300. ;; (define-key global-map [f31]        'function-key-error)
  301. ;; (define-key global-map [f32]        'function-key-error)
  302. ;; (define-key global-map [f33]        'function-key-error)
  303. ;; (define-key global-map [f34]        'function-key-error)
  304. ;; (define-key global-map [f35]        'function-key-error)
  305. ;; (define-key global-map [kp-backtab]    'function-key-error)
  306. ;; (define-key global-map [kp-space]    'function-key-error)
  307. ;; (define-key global-map [kp-tab]        'function-key-error)
  308. ;; (define-key global-map [kp-enter]    'function-key-error)
  309. ;; (define-key global-map [kp-f1]        'function-key-error)
  310. ;; (define-key global-map [kp-f2]        'function-key-error)
  311. ;; (define-key global-map [kp-f3]        'function-key-error)
  312. ;; (define-key global-map [kp-f4]        'function-key-error)
  313. ;; (define-key global-map [kp-multiply]    'function-key-error)
  314. ;; (define-key global-map [kp-add]        'function-key-error)
  315. ;; (define-key global-map [kp-separator]    'function-key-error)
  316. ;; (define-key global-map [kp-subtract]    'function-key-error)
  317. ;; (define-key global-map [kp-decimal]    'function-key-error)
  318. ;; (define-key global-map [kp-divide]    'function-key-error)
  319. ;; (define-key global-map [kp-0]        'function-key-error)
  320. ;; (define-key global-map [kp-1]        'function-key-error)
  321. ;; (define-key global-map [kp-2]        'function-key-error)
  322. ;; (define-key global-map [kp-3]        'function-key-error)
  323. ;; (define-key global-map [kp-4]        'function-key-error)
  324. ;; (define-key global-map [kp-5]        'recenter)
  325. ;; (define-key global-map [kp-6]        'function-key-error)
  326. ;; (define-key global-map [kp-7]        'function-key-error)
  327. ;; (define-key global-map [kp-8]        'function-key-error)
  328. ;; (define-key global-map [kp-9]        'function-key-error)
  329. ;; (define-key global-map [kp-equal]    'function-key-error)
  330.  
  331. ;; X11R6 distinguishes these keys from the non-kp keys.
  332. ;; Make them behave like the non-kp keys unless otherwise bound.
  333. (define-key function-key-map [kp-home] [home])
  334. (define-key function-key-map [kp-left] [left])
  335. (define-key function-key-map [kp-up] [up])
  336. (define-key function-key-map [kp-right] [right])
  337. (define-key function-key-map [kp-down] [down])
  338. (define-key function-key-map [kp-prior] [prior])
  339. (define-key function-key-map [kp-next] [next])
  340. (define-key function-key-map [M-kp-next] [M-next])
  341. (define-key function-key-map [kp-end] [end])
  342. (define-key function-key-map [kp-begin] [begin])
  343. (define-key function-key-map [kp-insert] [insert])
  344. (define-key function-key-map [kp-delete] [delete])
  345.  
  346. (define-key global-map [mouse-movement] 'ignore)
  347.  
  348. (define-key global-map "\C-t" 'transpose-chars)
  349. (define-key esc-map "t" 'transpose-words)
  350. (define-key esc-map "\C-t" 'transpose-sexps)
  351. (define-key ctl-x-map "\C-t" 'transpose-lines)
  352.  
  353. (define-key esc-map ";" 'indent-for-comment)
  354. (define-key esc-map "j" 'indent-new-comment-line)
  355. (define-key esc-map "\C-j" 'indent-new-comment-line)
  356. (define-key ctl-x-map ";" 'set-comment-column)
  357. (define-key ctl-x-map "f" 'set-fill-column)
  358. (define-key ctl-x-map "$" 'set-selective-display)
  359.  
  360. (define-key esc-map "@" 'mark-word)
  361. (define-key esc-map "f" 'forward-word)
  362. (define-key esc-map "b" 'backward-word)
  363. (define-key esc-map "d" 'kill-word)
  364. (define-key esc-map "\177" 'backward-kill-word)
  365.  
  366. (define-key esc-map "<" 'beginning-of-buffer)
  367. (define-key esc-map ">" 'end-of-buffer)
  368. (define-key ctl-x-map "h" 'mark-whole-buffer)
  369. (define-key esc-map "\\" 'delete-horizontal-space)
  370.  
  371. (defalias 'mode-specific-command-prefix (make-sparse-keymap))
  372. (defconst mode-specific-map (symbol-function 'mode-specific-command-prefix)
  373.   "Keymap for characters following C-c.")
  374. (define-key global-map "\C-c" 'mode-specific-command-prefix)
  375.  
  376. (global-set-key [M-right]  'forward-word)
  377. (global-set-key [M-left]   'backward-word)
  378.  
  379. (define-key esc-map "\C-f" 'forward-sexp)
  380. (define-key esc-map "\C-b" 'backward-sexp)
  381. (define-key esc-map "\C-u" 'backward-up-list)
  382. (define-key esc-map "\C-@" 'mark-sexp)
  383. (define-key esc-map [?\C-\ ] 'mark-sexp)
  384. (define-key esc-map "\C-d" 'down-list)
  385. (define-key esc-map "\C-k" 'kill-sexp)
  386. (define-key global-map [C-M-delete] 'backward-kill-sexp)
  387. (define-key esc-map "\C-n" 'forward-list)
  388. (define-key esc-map "\C-p" 'backward-list)
  389. (define-key esc-map "\C-a" 'beginning-of-defun)
  390. (define-key esc-map "\C-e" 'end-of-defun)
  391. (define-key esc-map "\C-h" 'mark-defun)
  392. (define-key esc-map "(" 'insert-parentheses)
  393. (define-key esc-map ")" 'move-past-close-and-reindent)
  394. (define-key esc-map "\t" 'lisp-complete-symbol)
  395.  
  396. (define-key ctl-x-map "\C-e" 'eval-last-sexp)
  397.  
  398. (define-key ctl-x-map "r\C-@" 'point-to-register)
  399. (define-key ctl-x-map [?r ?\C-\ ] 'point-to-register)
  400. (define-key ctl-x-map "r " 'point-to-register)
  401. (define-key ctl-x-map "rj" 'jump-to-register)
  402. (define-key ctl-x-map "rs" 'copy-to-register)
  403. (define-key ctl-x-map "rx" 'copy-to-register)
  404. (define-key ctl-x-map "ri" 'insert-register)
  405. (define-key ctl-x-map "rg" 'insert-register)
  406. (define-key ctl-x-map "rr" 'copy-rectangle-to-register)
  407. (define-key ctl-x-map "rc" 'clear-rectangle)
  408. (define-key ctl-x-map "rk" 'kill-rectangle)
  409. (define-key ctl-x-map "rd" 'delete-rectangle)
  410. (define-key ctl-x-map "ry" 'yank-rectangle)
  411. (define-key ctl-x-map "ro" 'open-rectangle)
  412. (define-key ctl-x-map "rt" 'string-rectangle)
  413. (define-key ctl-x-map "rw" 'window-configuration-to-register)
  414. (define-key ctl-x-map "rf" 'frame-configuration-to-register)
  415.  
  416. ;; These key bindings are deprecated; use the above C-x r map instead.
  417. ;; We use these aliases so \[...] will show the C-x r bindings instead.
  418. (defalias 'point-to-register-compatibility-binding 'point-to-register)
  419. (defalias 'jump-to-register-compatibility-binding 'jump-to-register)
  420. (defalias 'copy-to-register-compatibility-binding 'copy-to-register)
  421. (defalias 'insert-register-compatibility-binding 'insert-register)
  422. (define-key ctl-x-map "/" 'point-to-register-compatibility-binding)
  423. (define-key ctl-x-map "j" 'jump-to-register-compatibility-binding)
  424. (define-key ctl-x-map "x" 'copy-to-register-compatibility-binding)
  425. (define-key ctl-x-map "g" 'insert-register-compatibility-binding)
  426. ;; (define-key ctl-x-map "r" 'copy-rectangle-to-register)
  427.  
  428. (define-key esc-map "q" 'fill-paragraph)
  429. ;; (define-key esc-map "g" 'fill-region)
  430. (define-key ctl-x-map "." 'set-fill-prefix)
  431.  
  432. (define-key esc-map "{" 'backward-paragraph)
  433. (define-key esc-map "}" 'forward-paragraph)
  434. (define-key esc-map "h" 'mark-paragraph)
  435. (define-key esc-map "a" 'backward-sentence)
  436. (define-key esc-map "e" 'forward-sentence)
  437. (define-key esc-map "k" 'kill-sentence)
  438. (define-key ctl-x-map "\177" 'backward-kill-sentence)
  439.  
  440. (define-key ctl-x-map "[" 'backward-page)
  441. (define-key ctl-x-map "]" 'forward-page)
  442. (define-key ctl-x-map "\C-p" 'mark-page)
  443. (define-key ctl-x-map "l" 'count-lines-page)
  444. (define-key ctl-x-map "np" 'narrow-to-page)
  445. ;; (define-key ctl-x-map "p" 'narrow-to-page)
  446.  
  447. (define-key ctl-x-map "al" 'add-mode-abbrev)
  448. (define-key ctl-x-map "a\C-a" 'add-mode-abbrev)
  449. (define-key ctl-x-map "ag" 'add-global-abbrev)
  450. (define-key ctl-x-map "a+" 'add-mode-abbrev)
  451. (define-key ctl-x-map "aig" 'inverse-add-global-abbrev)
  452. (define-key ctl-x-map "ail" 'inverse-add-mode-abbrev)
  453. ;; (define-key ctl-x-map "a\C-h" 'inverse-add-global-abbrev)
  454. (define-key ctl-x-map "a-" 'inverse-add-global-abbrev)
  455. (define-key ctl-x-map "ae" 'expand-abbrev)
  456. (define-key ctl-x-map "a'" 'expand-abbrev)
  457. ;; (define-key ctl-x-map "\C-a" 'add-mode-abbrev)
  458. ;; (define-key ctl-x-map "\+" 'add-global-abbrev)
  459. ;; (define-key ctl-x-map "\C-h" 'inverse-add-mode-abbrev)
  460. ;; (define-key ctl-x-map "\-" 'inverse-add-global-abbrev)
  461. (define-key esc-map "'" 'abbrev-prefix-mark)
  462. (define-key ctl-x-map "'" 'expand-abbrev)
  463.  
  464.  
  465. ;;; Generated autoloads follow (made by autoload.el).
  466.  
  467. ;;; To sort them, execute the following after narrowing
  468. ;;; to a region starting just after the following formfeed (control-l)
  469. ;;; and ending just after the last formfeed in the file.
  470.  
  471. ;;;(sort-regexp-fields nil "\n*.*\n.*from \\(.*\\)[^ ]* " "\\1"
  472. ;;;            (point-min) (point-max))
  473.  
  474. ;;;### (autoloads (add-log-current-defun change-log-mode add-change-log-entry-other-window add-change-log-entry find-change-log prompt-for-change-log-name) "add-log" "add-log.el" (11671 28353))
  475. ;;; Generated autoloads from add-log.el
  476.  
  477. (autoload (quote prompt-for-change-log-name) "add-log" "\
  478. Prompt for a change log name." nil nil)
  479.  
  480. (autoload (quote find-change-log) "add-log" "\
  481. Find a change log file for \\[add-change-log-entry] and return the name.
  482. Optional arg FILE-NAME is a name to try first.
  483. If FILE-NAME is nil, use the value of `change-log-default-name' if non-nil.
  484. Failing that, use \"ChangeLog\" in the current directory.
  485. If the file does not exist in the named directory, successive parent
  486. directories are tried.
  487.  
  488. Once a file is found, `change-log-default-name' is set locally in the
  489. current buffer to the complete file name." nil nil)
  490.  
  491. (autoload (quote add-change-log-entry) "add-log" "\
  492. Find change log file and add an entry for today.
  493. Optional arg (interactive prefix) non-nil means prompt for user name and site.
  494. Second arg is file name of change log.  If nil, uses `change-log-default-name'.
  495. Third arg OTHER-WINDOW non-nil means visit in other window.
  496. Fourth arg NEW-ENTRY non-nil means always create a new entry at the front;
  497. never append to an existing entry." t nil)
  498.  
  499. (autoload (quote add-change-log-entry-other-window) "add-log" "\
  500. Find change log file in other window and add an entry for today.
  501. Optional arg (interactive prefix) non-nil means prompt for user name and site.
  502. Second arg is file name of change log.  If nil, uses `change-log-default-name'." t nil)
  503. (define-key ctl-x-4-map "a" 'add-change-log-entry-other-window)
  504.  
  505. (autoload (quote change-log-mode) "add-log" "\
  506. Major mode for editing change logs; like Indented Text Mode.
  507. Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74.
  508. New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window].
  509. Each entry behaves as a paragraph, and the entries for one day as a page.
  510. Runs `change-log-mode-hook'." t nil)
  511.  
  512. (autoload (quote add-log-current-defun) "add-log" "\
  513. Return name of function definition point is in, or nil.
  514.  
  515. Understands C, Lisp, LaTeX (\"functions\" are chapters, sections, ...),
  516. Texinfo (@node titles), and Fortran.
  517.  
  518. Other modes are handled by a heuristic that looks in the 10K before
  519. point for uppercase headings starting in the first column or
  520. identifiers followed by `:' or `=', see variable
  521. `add-log-current-defun-header-regexp'.
  522.  
  523. Has a preference of looking backwards." nil nil)
  524.  
  525. ;;;***
  526.  
  527. ;;;### (autoloads (ad-start-advice defadvice ad-add-advice) "advice" "advice.el" (11821 7551))
  528. ;;; Generated autoloads from advice.el
  529.  
  530. (defvar ad-start-advice-on-load t "\
  531. *Non-nil will start Advice magic when this file gets loaded.
  532. Also see function `ad-start-advice'.")
  533.  
  534. (defvar ad-activate-on-definition t "\
  535. *Non-nil means automatic advice activation at function definition.
  536. Set this variable to t if you want to enable forward advice (which is
  537. automatic advice activation of a previously undefined function at the
  538. point the function gets defined/loaded/autoloaded).  The value of this
  539. variable takes effect only during the execution of `ad-start-advice'. 
  540. If non-nil it will enable definition hooks regardless of the value
  541. of `ad-enable-definition-hooks'.")
  542.  
  543. (defvar ad-redefinition-action (quote warn) "\
  544. *Defines what to do with redefinitions during de/activation.
  545. Redefinition occurs if a previously activated function that already has an
  546. original definition associated with it gets redefined and then de/activated.
  547. In such a case we can either accept the current definition as the new
  548. original definition, discard the current definition and replace it with the
  549. old original, or keep it and raise an error.  The values `accept', `discard',
  550. `error' or `warn' govern what will be done.  `warn' is just like `accept' but
  551. it additionally prints a warning message.  All other values will be
  552. interpreted as `error'.")
  553.  
  554. (defvar ad-definition-hooks nil "\
  555. *List of hooks to be run after a function definition.
  556. The variable `ad-defined-function' will be bound to the name of
  557. the currently defined function when the hook function is run.")
  558.  
  559. (defvar ad-enable-definition-hooks nil "\
  560. *Non-nil will enable hooks to be run on function definition.
  561. Setting this variable is a noop unless the value of
  562. `ad-activate-on-definition' (which see) is nil.")
  563.  
  564. (autoload (quote ad-add-advice) "advice" "\
  565. Adds a piece of ADVICE to FUNCTION's list of advices in CLASS.
  566. If FUNCTION already has one or more pieces of advice of the specified
  567. CLASS then POSITION determines where the new piece will go.  The value
  568. of POSITION can either be `first', `last' or a number where 0 corresponds
  569. to `first'.  Numbers outside the range will be mapped to the closest
  570. extreme position.  If there was already a piece of ADVICE with the same
  571. name, then the position argument will be ignored and the old advice
  572. will be overwritten with the new one.
  573.     If the FUNCTION was not advised already, then its advice info will be 
  574. initialized.  Redefining a piece of advice whose name is part of the cache-id
  575. will clear the cache." nil nil)
  576.  
  577. (autoload (quote defadvice) "advice" "\
  578. Defines a piece of advice for FUNCTION (a symbol).
  579. The syntax of `defadvice' is as follows:
  580.  
  581.   (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...)
  582.     [DOCSTRING] [INTERACTIVE-FORM]
  583.     BODY... )
  584.  
  585. FUNCTION ::= Name of the function to be advised.
  586. CLASS ::= `before' | `around' | `after' | `activation' | `deactivation'.
  587. NAME ::= Non-nil symbol that names this piece of advice.
  588. POSITION ::= `first' | `last' | NUMBER. Optional, defaults to `first',
  589.     see also `ad-add-advice'.
  590. ARGLIST ::= An optional argument list to be used for the advised function
  591.     instead of the argument list of the original.  The first one found in
  592.     before/around/after-advices will be used.
  593. FLAG ::= `protect'|`disable'|`activate'|`compile'|`preactivate'|`freeze'.
  594.     All flags can be specified with unambiguous initial substrings.
  595. DOCSTRING ::= Optional documentation for this piece of advice.
  596. INTERACTIVE-FORM ::= Optional interactive form to be used for the advised
  597.     function.  The first one found in before/around/after-advices will be used.
  598. BODY ::= Any s-expression.
  599.  
  600. Semantics of the various flags:
  601. `protect': The piece of advice will be protected against non-local exits in
  602. any code that precedes it.  If any around-advice of a function is protected
  603. then automatically all around-advices will be protected (the complete onion).
  604.  
  605. `activate': All advice of FUNCTION will be activated immediately if
  606. FUNCTION has been properly defined prior to this application of `defadvice'.
  607.  
  608. `compile': In conjunction with `activate' specifies that the resulting
  609. advised function should be compiled.
  610.  
  611. `disable': The defined advice will be disabled, hence, it will not be used 
  612. during activation until somebody enables it.
  613.  
  614. `preactivate': Preactivates the advised FUNCTION at macro-expansion/compile
  615. time.  This generates a compiled advised definition according to the current
  616. advice state that will be used during activation if appropriate.  Only use
  617. this if the `defadvice' gets actually compiled.
  618.  
  619. `freeze': Expands the `defadvice' into a redefining `defun/defmacro' according
  620. to the current advice state.  No other advice information will be saved.
  621. Frozen advices cannot be undone, they behave like a hard redefinition of
  622. the advised function.  `freeze' implies `activate' and `preactivate'.  The
  623. documentation of the advised function can be dumped onto the `DOC' file
  624. during preloading.
  625.  
  626. Look at the file `advice.el' for comprehensive documentation." nil (quote macro))
  627.  
  628. (autoload (quote ad-start-advice) "advice" "\
  629. Redefines some primitives to start the advice magic.
  630. If `ad-activate-on-definition' is t then advice information will
  631. automatically get activated whenever an advised function gets defined or
  632. redefined.  This will enable goodies such as forward advice and
  633. automatically enable function definition hooks.  If its value is nil but
  634. the value of `ad-enable-definition-hooks' is t then definition hooks
  635. will be enabled without having automatic advice activation, otherwise
  636. function definition hooks will be disabled too.  If definition hooks are
  637. enabled then functions stored in `ad-definition-hooks' are run whenever
  638. a function gets defined or redefined." t nil)
  639.  
  640. ;;;***
  641.  
  642. ;;;### (autoloads (ange-ftp-hook-function) "ange-ftp" "ange-ftp.el" (11716 18742))
  643. ;;; Generated autoloads from ange-ftp.el
  644.  
  645. (autoload (quote ange-ftp-hook-function) "ange-ftp" nil nil nil)
  646.  
  647. (or (assoc "^/[^/:]*[^/:]:" file-name-handler-alist) (setq file-name-handler-alist (cons (quote ("^/[^/:]*[^/:]:" . ange-ftp-hook-function)) file-name-handler-alist)))
  648.  
  649. (or (assoc "^/[^/:]*\\'" file-name-handler-alist) (setq file-name-handler-alist (cons (quote ("^/[^/:]*\\'" . ange-ftp-completion-hook-function)) file-name-handler-alist)))
  650.  
  651. ;;;***
  652.  
  653. ;;;### (autoloads (appt-make-list) "appt" "appt.el" (11649 8400))
  654. ;;; Generated autoloads from appt.el
  655.  
  656. (defvar appt-issue-message t "\
  657. *Non-nil means check for appointments in the diary buffer.
  658. To be detected, the diary entry must have the time
  659. as the first thing on a line.")
  660.  
  661. (defvar appt-message-warning-time 12 "\
  662. *Time in minutes before an appointment that the warning begins.")
  663.  
  664. (defvar appt-audible t "\
  665. *Non-nil means beep to indicate appointment.")
  666.  
  667. (defvar appt-visible t "\
  668. *Non-nil means display appointment message in echo area.")
  669.  
  670. (defvar appt-display-mode-line t "\
  671. *Non-nil means display minutes to appointment and time on the mode line.")
  672.  
  673. (defvar appt-msg-window t "\
  674. *Non-nil means display appointment message in another window.")
  675.  
  676. (defvar appt-display-duration 10 "\
  677. *The number of seconds an appointment message is displayed.")
  678.  
  679. (defvar appt-display-diary t "\
  680. *Non-nil means to display the next days diary on the screen. 
  681. This will occur at midnight when the appointment list is updated.")
  682.  
  683. (autoload (quote appt-make-list) "appt" nil nil nil)
  684.  
  685. ;;;***
  686.  
  687. ;;;### (autoloads (super-apropos apropos) "apropos" "apropos.el" (11692 16667))
  688. ;;; Generated autoloads from apropos.el
  689.  
  690. (autoload (quote apropos) "apropos" "\
  691. Show all symbols whose names contain matches for REGEXP.
  692. If optional argument DO-ALL is non-nil (prefix argument if interactive),
  693. or if `apropos-do-all' is non-nil, does more (time-consuming) work such as
  694. showing key bindings.  Optional argument PRED is called with each symbol, and
  695. if it returns nil, the symbol is not shown.
  696.  
  697. Returns list of symbols and documentation found." t nil)
  698.  
  699. (autoload (quote super-apropos) "apropos" "\
  700. Show symbols whose names/documentation contain matches for REGEXP.
  701. If optional argument DO-ALL is non-nil (prefix argument if interactive),
  702. or if `apropos-do-all' is non-nil, does more (time-consuming) work such as
  703. showing key bindings and documentation that is not stored in the documentation
  704. file.
  705.  
  706. Returns list of symbols and documentation found." t nil)
  707.  
  708. ;;;***
  709.  
  710. ;;;### (autoloads (asm-mode) "asm-mode" "asm-mode.el" (11663 22930))
  711. ;;; Generated autoloads from asm-mode.el
  712.  
  713. (autoload (quote asm-mode) "asm-mode" "\
  714. Major mode for editing typical assembler code.
  715. Features a private abbrev table and the following bindings:
  716.  
  717. \\[asm-colon]    outdent a preceding label, tab to next tab stop.
  718. \\[tab-to-tab-stop]    tab to next tab stop.
  719. \\[asm-newline]    newline, then tab to next tab stop.
  720. \\[asm-comment]    smart placement of assembler comments.
  721.  
  722. The character used for making comments is set by the variable
  723. `asm-comment-char' (which defaults to `?;').
  724.  
  725. Alternatively, you may set this variable in `asm-set-comment-hook', which is
  726. called near the beginning of mode initialization.
  727.  
  728. Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization.
  729.  
  730. Special commands:
  731. \\{asm-mode-map}
  732. " t nil)
  733.  
  734. ;;;***
  735.  
  736. ;;;### (autoloads (batch-update-autoloads update-directory-autoloads update-autoloads-here update-file-autoloads) "autoload" "autoload.el" (11730 31531))
  737. ;;; Generated autoloads from autoload.el
  738.  
  739. (autoload (quote update-file-autoloads) "autoload" "\
  740. Update the autoloads for FILE in `generated-autoload-file'
  741. \(which FILE might bind in its local variables)." t nil)
  742.  
  743. (autoload (quote update-autoloads-here) "autoload" "\
  744. Update sections of the current buffer generated by \\[update-file-autoloads]." t nil)
  745.  
  746. (autoload (quote update-directory-autoloads) "autoload" "\
  747. Run \\[update-file-autoloads] on each .el file in DIR." t nil)
  748.  
  749. (autoload (quote batch-update-autoloads) "autoload" "\
  750. Update the autoloads for the files or directories on the command line.
  751. Runs \\[update-file-autoloads] on files and \\[update-directory-autoloads]
  752. on directories.  Must be used only with -batch, and kills Emacs on completion.
  753. Each file will be processed even if an error occurred previously.
  754. For example, invoke `emacs -batch -f batch-update-autoloads *.el'." nil nil)
  755.  
  756. ;;;***
  757.  
  758. ;;;### (autoloads (awk-mode) "awk-mode" "awk-mode.el" (11546 25381))
  759. ;;; Generated autoloads from awk-mode.el
  760.  
  761. (autoload (quote awk-mode) "awk-mode" "\
  762. Major mode for editing AWK code.
  763. This is much like C mode except for the syntax of comments.  It uses
  764. the same keymap as C mode and has the same variables for customizing
  765. indentation.  It has its own abbrev table and its own syntax table.
  766.  
  767. Turning on AWK mode calls the value of the variable `awk-mode-hook'
  768. with no args, if that value is non-nil." t nil)
  769.  
  770. ;;;***
  771.  
  772. ;;;### (autoloads (backquote) "backquote" "backquote.el" (11722 56597))
  773. ;;; Generated autoloads from backquote.el
  774.  
  775. (autoload (quote backquote) "backquote" "\
  776. Argument STRUCTURE describes a template to build.
  777.  
  778. The whole structure acts as if it were quoted except for certain
  779. places where expressions are evaluated and inserted or spliced in.
  780.  
  781. For example:
  782.  
  783. b                 => (ba bb bc)        ; assume b has this value
  784. \(` (a b c))       => (a b c)        ; backquote acts like quote
  785. \(` (a (, b) c))   => (a (ba bb bc) c)    ; insert the value of b
  786. \(` (a (,@ b) c))  => (a ba bb bc c)    ; splice in the value of b
  787.  
  788. Vectors work just like lists.  Nested backquotes are permitted." nil (quote macro))
  789.  
  790. (defalias (quote \`) (symbol-function (quote backquote)))
  791.  
  792. ;;;***
  793.  
  794. ;;;### (autoloads (bibtex-mode) "bibtex" "bibtex.el" (11557 45950))
  795. ;;; Generated autoloads from bibtex.el
  796.  
  797. (autoload (quote bibtex-mode) "bibtex" "\
  798. Major mode for editing bibtex files.
  799.  
  800. \\{bibtex-mode-map}
  801.  
  802. A command such as \\[bibtex-Book] will outline the fields for a BibTeX book entry.
  803.  
  804. The optional fields start with the string OPT, and thus ignored by BibTeX.
  805. The OPT string may be removed from a field with \\[bibtex-remove-OPT].
  806. \\[bibtex-kill-optional-field] kills the current optional field entirely.
  807. \\[bibtex-remove-double-quotes] removes the double-quotes around the text of
  808. the current field.  \\[bibtex-empty-field] replaces the text of the current
  809. field with the default \"\".
  810.  
  811. The command \\[bibtex-clean-entry] cleans the current entry, i.e. (i) removes
  812. double-quotes from entirely numerical fields, (ii) removes OPT from all
  813. non-empty optional fields, (iii) removes all empty optional fields, and (iv)
  814. checks that no non-optional fields are empty.
  815.  
  816. Use \\[bibtex-find-text] to position the dot at the end of the current field.
  817. Use \\[bibtex-next-field] to move to end of the next field.
  818.  
  819. The following may be of interest as well:
  820.  
  821.   Functions:
  822.     find-bibtex-duplicates
  823.     find-bibtex-entry-location
  824.     hide-bibtex-entry-bodies
  825.     sort-bibtex-entries
  826.     validate-bibtex-buffer
  827.  
  828.   Variables:
  829.     bibtex-clean-entry-zap-empty-opts
  830.     bibtex-entry-field-alist
  831.     bibtex-include-OPTannote
  832.     bibtex-include-OPTcrossref
  833.     bibtex-include-OPTkey
  834.     bibtex-maintain-sorted-entries
  835.     bibtex-mode-user-optional-fields
  836.  
  837. Fields:
  838.     address
  839.            Publisher's address
  840.     annote
  841.            Long annotation used for annotated bibliographies (begins sentence)
  842.     author
  843.            Name(s) of author(s), in BibTeX name format
  844.     booktitle
  845.            Book title when the thing being referenced isn't the whole book.
  846.            For book entries, the title field should be used instead.
  847.     chapter
  848.            Chapter number
  849.     crossref
  850.        The database key of the entry being cross referenced.
  851.     edition
  852.            Edition of a book (e.g., \"second\")
  853.     editor
  854.            Name(s) of editor(s), in BibTeX name format.
  855.            If there is also an author field, then the editor field should be
  856.            for the book or collection that the work appears in
  857.     howpublished
  858.             How something strange has been published (begins sentence)
  859.     institution
  860.            Sponsoring institution
  861.     journal
  862.            Journal name (macros are provided for many)
  863.     key
  864.            Alphabetizing and labeling key (needed when no author or editor)
  865.     month
  866.            Month (macros are provided)
  867.     note
  868.            To help the reader find a reference (begins sentence)
  869.     number
  870.            Number of a journal or technical report
  871.     organization
  872.            Organization (sponsoring a conference)
  873.     pages
  874.            Page number or numbers (use `--' to separate a range)
  875.     publisher
  876.            Publisher name
  877.     school
  878.            School name (for theses)
  879.     series
  880.            The name of a series or set of books.
  881.            An individual book will will also have it's own title
  882.     title
  883.            The title of the thing being referenced
  884.     type
  885.            Type of a technical report (e.g., \"Research Note\") to be used
  886.            instead of the default \"Technical Report\"
  887.     volume
  888.            Volume of a journal or multivolume work
  889.     year
  890.            Year---should contain only numerals
  891. ---------------------------------------------------------
  892. Entry to this mode calls the value of bibtex-mode-hook if that value is
  893. non-nil." t nil)
  894.  
  895. ;;;***
  896.  
  897. ;;;### (autoloads (blackbox) "blackbox" "blackbox.el" (11356 18211))
  898. ;;; Generated autoloads from blackbox.el
  899.  
  900. (autoload (quote blackbox) "blackbox" "\
  901. Play blackbox.  Optional prefix argument is the number of balls;
  902. the default is 4.
  903.  
  904. What is blackbox?
  905.  
  906. Blackbox is a game of hide and seek played on an 8 by 8 grid (the
  907. Blackbox).  Your opponent (Emacs, in this case) has hidden several
  908. balls (usually 4) within this box.  By shooting rays into the box and
  909. observing where they emerge it is possible to deduce the positions of
  910. the hidden balls.  The fewer rays you use to find the balls, the lower
  911. your score.
  912.  
  913. Overview of play:
  914.  
  915. \\<blackbox-mode-map>To play blackbox, type \\[blackbox].  An optional prefix argument
  916. specifies the number of balls to be hidden in the box; the default is
  917. four.
  918.  
  919. The cursor can be moved around the box with the standard cursor
  920. movement keys.
  921.  
  922. To shoot a ray, move the cursor to the edge of the box and press SPC.
  923. The result will be determined and the playfield updated.
  924.  
  925. You may place or remove balls in the box by moving the cursor into the
  926. box and pressing \\[bb-romp].
  927.  
  928. When you think the configuration of balls you have placed is correct,
  929. press \\[bb-done].  You will be informed whether you are correct or
  930. not, and be given your score.  Your score is the number of letters and
  931. numbers around the outside of the box plus five for each incorrectly
  932. placed ball.  If you placed any balls incorrectly, they will be
  933. indicated with `x', and their actual positions indicated with `o'.
  934.  
  935. Details:
  936.  
  937. There are three possible outcomes for each ray you send into the box:
  938.  
  939.     Detour: the ray is deflected and emerges somewhere other than
  940.         where you sent it in.  On the playfield, detours are
  941.         denoted by matching pairs of numbers -- one where the
  942.         ray went in, and the other where it came out.
  943.  
  944.     Reflection: the ray is reflected and emerges in the same place
  945.         it was sent in.  On the playfield, reflections are
  946.         denoted by the letter `R'.
  947.  
  948.     Hit:    the ray strikes a ball directly and is absorbed.  It does
  949.         not emerge from the box.  On the playfield, hits are
  950.         denoted by the letter `H'.
  951.  
  952. The rules for how balls deflect rays are simple and are best shown by
  953. example.
  954.  
  955. As a ray approaches a ball it is deflected ninety degrees.  Rays can
  956. be deflected multiple times.  In the diagrams below, the dashes
  957. represent empty box locations and the letter `O' represents a ball.
  958. The entrance and exit points of each ray are marked with numbers as
  959. described under \"Detour\" above.  Note that the entrance and exit
  960. points are always interchangeable.  `*' denotes the path taken by the
  961. ray.
  962.  
  963. Note carefully the relative positions of the ball and the ninety
  964. degree deflection it causes.
  965.  
  966.     1                                            
  967.   - * - - - - - -         - - - - - - - -         - - - - - - - -       
  968.   - * - - - - - -         - - - - - - - -         - - - - - - - -       
  969. 1 * * - - - - - -         - - - - - - - -         - O - - - - O -       
  970.   - - O - - - - -         - - O - - - - -         - - * * * * - -
  971.   - - - - - - - -         - - - * * * * * 2     3 * * * - - * - -
  972.   - - - - - - - -         - - - * - - - -         - - - O - * - -      
  973.   - - - - - - - -         - - - * - - - -         - - - - * * - -       
  974.   - - - - - - - -         - - - * - - - -         - - - - * - O -       
  975.                                 2                         3
  976.  
  977. As mentioned above, a reflection occurs when a ray emerges from the same point
  978. it was sent in.  This can happen in several ways:
  979.  
  980.                                                                            
  981.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  982.   - - - - O - - -         - - O - O - - -          - - - - - - - -
  983. R * * * * - - - -         - - - * - - - -          O - - - - - - -
  984.   - - - - O - - -         - - - * - - - -        R - - - - - - - -
  985.   - - - - - - - -         - - - * - - - -          - - - - - - - -
  986.   - - - - - - - -         - - - * - - - -          - - - - - - - -
  987.   - - - - - - - -       R * * * * - - - -          - - - - - - - -
  988.   - - - - - - - -         - - - - O - - -          - - - - - - - -
  989.  
  990. In the first example, the ray is deflected downwards by the upper
  991. ball, then left by the lower ball, and finally retraces its path to
  992. its point of origin.  The second example is similar.  The third
  993. example is a bit anomalous but can be rationalized by realizing the
  994. ray never gets a chance to get into the box.  Alternatively, the ray
  995. can be thought of as being deflected downwards and immediately
  996. emerging from the box.
  997.  
  998. A hit occurs when a ray runs straight into a ball:
  999.  
  1000.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  1001.   - - - - - - - -         - - - - - - - -          - - - - O - - -
  1002.   - - - - - - - -         - - - - O - - -        H * * * * - - - -
  1003.   - - - - - - - -       H * * * * O - - -          - - - * - - - -
  1004.   - - - - - - - -         - - - - O - - -          - - - O - - - -
  1005. H * * * O - - - -         - - - - - - - -          - - - - - - - -
  1006.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  1007.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  1008.  
  1009. Be sure to compare the second example of a hit with the first example of
  1010. a reflection." t nil)
  1011.  
  1012. ;;;***
  1013.  
  1014. ;;;### (autoloads (bookmark-menu-bar-delete bookmark-menu-bar-rename bookmark-menu-bar-locate bookmark-menu-bar-jump bookmark-menu-bar-insert list-bookmarks bookmark-load bookmark-save bookmark-write bookmark-delete bookmark-insert bookmark-rename bookmark-locate bookmark-relocate bookmark-jump bookmark-set) "bookmark" "bookmark.el" (11646 52414))
  1015. ;;; Generated autoloads from bookmark.el
  1016.  
  1017. (if (or (symbolp (key-binding "r")) (fboundp (quote bookmark-set))) nil (progn (define-key ctl-x-map "rb" (quote bookmark-jump)) (define-key ctl-x-map "rm" (quote bookmark-set)) (define-key ctl-x-map "rl" (quote list-bookmarks))))
  1018.  
  1019. (defvar bookmark-map nil "\
  1020. Keymap containing bindings to bookmark functions.
  1021. It is not bound to any key by default: to bind it
  1022. so that you have a bookmark prefix, just use `global-set-key' and bind a
  1023. key of your choice to `bookmark-map'.  All interactive bookmark
  1024. functions have a binding in this keymap.")
  1025.  
  1026. (define-prefix-command (quote bookmark-map))
  1027.  
  1028. (define-key bookmark-map "x" (quote bookmark-set))
  1029.  
  1030. (define-key bookmark-map "m" (quote bookmark-set))
  1031.  
  1032. (define-key bookmark-map "j" (quote bookmark-jump))
  1033.  
  1034. (define-key bookmark-map "g" (quote bookmark-jump))
  1035.  
  1036. (define-key bookmark-map "i" (quote bookmark-insert))
  1037.  
  1038. (define-key bookmark-map "e" (quote edit-bookmarks))
  1039.  
  1040. (define-key bookmark-map "f" (quote bookmark-locate))
  1041.  
  1042. (define-key bookmark-map "r" (quote bookmark-rename))
  1043.  
  1044. (define-key bookmark-map "d" (quote bookmark-delete))
  1045.  
  1046. (define-key bookmark-map "l" (quote bookmark-load))
  1047.  
  1048. (define-key bookmark-map "w" (quote bookmark-write))
  1049.  
  1050. (define-key bookmark-map "s" (quote bookmark-save))
  1051.  
  1052. (autoload (quote bookmark-set) "bookmark" "\
  1053. Set a bookmark named NAME inside a file.  
  1054. With prefix arg, will not overwrite a bookmark that has the same name
  1055. as NAME if such a bookmark already exists, but instead will \"push\"
  1056. the new bookmark onto the bookmark alist.  Thus the most recently set
  1057. bookmark with name NAME would be the one in effect at any given time,
  1058. but the others are still there, should you decide to delete the most
  1059. recent one.
  1060.  
  1061. To yank words from the text of the buffer and use them as part of the
  1062. bookmark name, type C-w while setting a bookmark.  Successive C-w's
  1063. yank successive words.
  1064.  
  1065. Typing C-v inserts the name of the current file being visited. Typing
  1066. C-u inserts the name of the last bookmark used in the buffer (as an
  1067. aid in using a single bookmark name to track your progress through a
  1068. large file).  If no bookmark was used, then C-u behaves like C-v and
  1069. inserts the name of the file being visited.
  1070.  
  1071. Use \\[bookmark-delete] to remove bookmarks (you give it a name,
  1072. and it removes only the first instance of a bookmark with that name from
  1073. the list of bookmarks.)" t nil)
  1074.  
  1075. (autoload (quote bookmark-jump) "bookmark" "\
  1076. Jump to bookmark BOOKMARK (a point in some file).  
  1077. You may have a problem using this function if the value of variable
  1078. `bookmark-alist' is nil.  If that happens, you need to load in some
  1079. bookmarks.  See help on function `bookmark-load' for more about
  1080. this.
  1081.  
  1082. If the file pointed to by BOOKMARK no longer exists, you will be asked
  1083. if you wish to give the bookmark a new location, and bookmark-jump
  1084. will then jump to the new location, as well as recording it in place
  1085. of the old one in the permanent bookmark record." t nil)
  1086.  
  1087. (autoload (quote bookmark-relocate) "bookmark" "\
  1088. Relocate BOOKMARK -- prompts for a filename, and makes an already
  1089. existing bookmark point to that file, instead of the one it used to
  1090. point at.  Useful when a file has been renamed after a bookmark was
  1091. set in it." t nil)
  1092.  
  1093. (autoload (quote bookmark-locate) "bookmark" "\
  1094. Insert the name of the file associated with BOOKMARK.
  1095. Optional second arg NO-INSERTION means merely return the filename as a
  1096. string." t nil)
  1097.  
  1098. (autoload (quote bookmark-rename) "bookmark" "\
  1099. Change the name of OLD-BOOKMARK to NEWNAME.  
  1100. If called from keyboard, prompts for OLD-BOOKMARK and NEWNAME.
  1101. If called from menubar, OLD-BOOKMARK is selected from a menu, and
  1102. prompts for NEWNAME. 
  1103. If called from Lisp, prompts for NEWNAME if only OLD-BOOKMARK was
  1104. passed as an argument.  If called with two strings, then no prompting
  1105. is done.  You must pass at least OLD-BOOKMARK when calling from Lisp.
  1106.  
  1107. While you are entering the new name, consecutive C-w's insert
  1108. consectutive words from the text of the buffer into the new bookmark
  1109. name, and C-v inserts the name of the file." t nil)
  1110.  
  1111. (autoload (quote bookmark-insert) "bookmark" "\
  1112. Insert the text of the file pointed to by bookmark BOOKMARK.  
  1113. You may have a problem using this function if the value of variable
  1114. `bookmark-alist' is nil.  If that happens, you need to load in some
  1115. bookmarks.  See help on function `bookmark-load' for more about
  1116. this." t nil)
  1117.  
  1118. (autoload (quote bookmark-delete) "bookmark" "\
  1119. Delete the bookmark named NAME from the bookmark list.  
  1120. Removes only the first instance of a bookmark with that name.  If
  1121. there are one or more other bookmarks with the same name, they will
  1122. not be deleted.  Defaults to the \"current\" bookmark (that is, the
  1123. one most recently used in this file, if any)." t nil)
  1124.  
  1125. (autoload (quote bookmark-write) "bookmark" "\
  1126. Write bookmarks to a file (for which the user will be prompted
  1127. interactively).  Don't use this in Lisp programs; use bookmark-save
  1128. instead." t nil)
  1129.  
  1130. (autoload (quote bookmark-save) "bookmark" "\
  1131. Save currently defined bookmarks.
  1132. Saves by default in the file defined by the variable
  1133. `bookmark-file'.  With a prefix arg, save it in file FILE.
  1134.  
  1135. If you are calling this from Lisp, the two arguments are PREFIX-ARG
  1136. and FILE, and if you just want it to write to the default file, then
  1137. pass no arguments.  Or pass in nil and FILE, and it will save in FILE
  1138. instead.  If you pass in one argument, and it is non-nil, then the
  1139. user will be interactively queried for a file to save in.
  1140.  
  1141. When you want to load in the bookmarks from a file, use
  1142. `bookmark-load', \\[bookmark-load].  That function will prompt you
  1143. for a file, defaulting to the file defined by variable
  1144. `bookmark-file'." t nil)
  1145.  
  1146. (autoload (quote bookmark-load) "bookmark" "\
  1147. Load bookmarks from FILE (which must be in bookmark format).
  1148. Appends loaded bookmarks to the front of the list of bookmarks.  If
  1149. optional second argument REVERT is non-nil, existing bookmarks are
  1150. destroyed.  Optional third arg NO-MSG means don't display any messages
  1151. while loading.
  1152.  
  1153. If you load a file that doesn't contain a proper bookmark alist, you
  1154. will corrupt Emacs's bookmark list.  Generally, you should only load
  1155. in files that were created with the bookmark functions in the first
  1156. place.  Your own personal bookmark file, `~/.emacs-bkmrks', is
  1157. maintained automatically by Emacs; you shouldn't need to load it
  1158. explicitly." t nil)
  1159.  
  1160. (defalias (quote edit-bookmarks) (quote list-bookmarks))
  1161.  
  1162. (autoload (quote list-bookmarks) "bookmark" "\
  1163. Display a list of existing bookmarks.
  1164. The list is displayed in a buffer named `*Bookmark List*'.
  1165. The leftmost column displays a D if the bookmark is flagged for
  1166. deletion, or > if it is flagged for displaying." t nil)
  1167.  
  1168. (autoload (quote bookmark-menu-bar-insert) "bookmark" "\
  1169. Insert the text of the file pointed to by bookmark BOOKMARK.  
  1170. You may have a problem using this function if the value of variable
  1171. `bookmark-alist' is nil.  If that happens, you need to load in some
  1172. bookmarks.  See help on function `bookmark-load' for more about
  1173. this." t nil)
  1174.  
  1175. (autoload (quote bookmark-menu-bar-jump) "bookmark" "\
  1176. Jump to bookmark BOOKMARK (a point in some file).  
  1177. You may have a problem using this function if the value of variable
  1178. `bookmark-alist' is nil.  If that happens, you need to load in some
  1179. bookmarks.  See help on function `bookmark-load' for more about
  1180. this." t nil)
  1181.  
  1182. (autoload (quote bookmark-menu-bar-locate) "bookmark" "\
  1183. Insert the name of the  file associated with BOOKMARK. 
  1184. \(This is not the same as the contents of that file)." t nil)
  1185.  
  1186. (autoload (quote bookmark-menu-bar-rename) "bookmark" "\
  1187. Change the name of OLD-BOOKMARK to NEWNAME.  
  1188. If called from keyboard, prompts for OLD-BOOKMARK and NEWNAME.
  1189. If called from menubar, OLD-BOOKMARK is selected from a menu, and
  1190. prompts for NEWNAME. 
  1191. If called from Lisp, prompts for NEWNAME if only OLD-BOOKMARK was
  1192. passed as an argument.  If called with two strings, then no prompting
  1193. is done.  You must pass at least OLD-BOOKMARK when calling from Lisp.
  1194.  
  1195. While you are entering the new name, consecutive C-w's insert
  1196. consectutive words from the text of the buffer into the new bookmark
  1197. name, and C-v inserts the name of the file." t nil)
  1198.  
  1199. (autoload (quote bookmark-menu-bar-delete) "bookmark" "\
  1200. Delete the bookmark named NAME from the bookmark list.  
  1201. Removes only the first instance of a bookmark with that name.  If
  1202. there are one or more other bookmarks with the same name, they will
  1203. not be deleted.  Defaults to the \"current\" bookmark (that is, the
  1204. one most recently used in this file, if any)." t nil)
  1205.  
  1206. (defvar menu-bar-bookmark-map (make-sparse-keymap "Bookmark functions."))
  1207.  
  1208. (fset (quote menu-bar-bookmark-map) (symbol-value (quote menu-bar-bookmark-map)))
  1209.  
  1210. (define-key menu-bar-bookmark-map [load] (quote ("Load a bookmark file" . bookmark-load)))
  1211.  
  1212. (define-key menu-bar-bookmark-map [write] (quote ("Write (to another file)" . bookmark-write)))
  1213.  
  1214. (define-key menu-bar-bookmark-map [save] (quote ("Save  (in default file)" . bookmark-save)))
  1215.  
  1216. (define-key menu-bar-bookmark-map [edit] (quote ("Edit Bookmark List" . list-bookmarks)))
  1217.  
  1218. (define-key menu-bar-bookmark-map [delete] (quote ("Delete bookmark" . bookmark-menu-bar-delete)))
  1219.  
  1220. (define-key menu-bar-bookmark-map [rename] (quote ("Rename bookmark" . bookmark-menu-bar-rename)))
  1221.  
  1222. (define-key menu-bar-bookmark-map [locate] (quote ("Insert location" . bookmark-menu-bar-locate)))
  1223.  
  1224. (define-key menu-bar-bookmark-map [insert] (quote ("Insert contents" . bookmark-menu-bar-insert)))
  1225.  
  1226. (define-key menu-bar-bookmark-map [set] (quote ("Set bookmark" . bookmark-set)))
  1227.  
  1228. (define-key menu-bar-bookmark-map [jump] (quote ("Jump to bookmark" . bookmark-menu-bar-jump)))
  1229.  
  1230. ;;;***
  1231.  
  1232. ;;;### (autoloads (batch-byte-recompile-directory batch-byte-compile display-call-tree byte-compile compile-defun byte-compile-file byte-recompile-directory) "bytecomp" "bytecomp.el" (11670 33216))
  1233. ;;; Generated autoloads from bytecomp.el
  1234.  
  1235. (autoload (quote byte-recompile-directory) "bytecomp" "\
  1236. Recompile every `.el' file in DIRECTORY that needs recompilation.
  1237. This is if a `.elc' file exists but is older than the `.el' file.
  1238. Files in subdirectories of DIRECTORY are processed also.
  1239.  
  1240. If the `.elc' file does not exist, normally the `.el' file is *not* compiled.
  1241. But a prefix argument (optional second arg) means ask user,
  1242. for each such `.el' file, whether to compile it.  Prefix argument 0 means
  1243. don't ask and compile the file anyway.
  1244.  
  1245. A nonzero prefix argument also means ask about each subdirectory." t nil)
  1246.  
  1247. (autoload (quote byte-compile-file) "bytecomp" "\
  1248. Compile a file of Lisp code named FILENAME into a file of byte code.
  1249. The output file's name is made by appending `c' to the end of FILENAME.
  1250. With prefix arg (noninteractively: 2nd arg), load the file after compiling." t nil)
  1251.  
  1252. (autoload (quote compile-defun) "bytecomp" "\
  1253. Compile and evaluate the current top-level form.
  1254. Print the result in the minibuffer.
  1255. With argument, insert value in current buffer after the form." t nil)
  1256.  
  1257. (autoload (quote byte-compile) "bytecomp" "\
  1258. If FORM is a symbol, byte-compile its function definition.
  1259. If FORM is a lambda or a macro, byte-compile it as a function." nil nil)
  1260.  
  1261. (autoload (quote display-call-tree) "bytecomp" "\
  1262. Display a call graph of a specified file.
  1263. This lists which functions have been called, what functions called
  1264. them, and what functions they call.  The list includes all functions
  1265. whose definitions have been compiled in this Emacs session, as well as
  1266. all functions called by those functions.
  1267.  
  1268. The call graph does not include macros, inline functions, or
  1269. primitives that the byte-code interpreter knows about directly (eq,
  1270. cons, etc.).
  1271.  
  1272. The call tree also lists those functions which are not known to be called
  1273. \(that is, to which no calls have been compiled), and which cannot be
  1274. invoked interactively." t nil)
  1275.  
  1276. (autoload (quote batch-byte-compile) "bytecomp" "\
  1277. Run `byte-compile-file' on the files remaining on the command line.
  1278. Use this from the command line, with `-batch';
  1279. it won't work in an interactive Emacs.
  1280. Each file is processed even if an error occurred previously.
  1281. For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\"" nil nil)
  1282.  
  1283. (autoload (quote batch-byte-recompile-directory) "bytecomp" "\
  1284. Runs `byte-recompile-directory' on the dirs remaining on the command line.
  1285. Must be used only with `-batch', and kills Emacs on completion.
  1286. For example, invoke `emacs -batch -f batch-byte-recompile-directory .'." nil nil)
  1287.  
  1288. ;;;***
  1289.  
  1290. ;;;### (autoloads nil "cal-dst" "cal-dst.el" (11684 27480))
  1291. ;;; Generated autoloads from cal-dst.el
  1292.  
  1293. (put (quote calendar-daylight-savings-starts) (quote risky-local-variable) t)
  1294.  
  1295. (put (quote calendar-daylight-savings-starts) (quote risky-local-variable) t)
  1296.  
  1297. ;;;***
  1298.  
  1299. ;;;### (autoloads (list-yahrzeit-dates calendar) "calendar" "calendar.el" (11759 36218))
  1300. ;;; Generated autoloads from calendar.el
  1301.  
  1302. (defvar calendar-week-start-day 0 "\
  1303. *The day of the week on which a week in the calendar begins.
  1304. 0 means Sunday (default), 1 means Monday, and so on.")
  1305.  
  1306. (defvar view-diary-entries-initially nil "\
  1307. *Non-nil means display current date's diary entries on entry.
  1308. The diary is displayed in another window when the calendar is first displayed,
  1309. if the current date is visible.  The number of days of diary entries displayed
  1310. is governed by the variable `number-of-diary-entries'.")
  1311.  
  1312. (defvar number-of-diary-entries 1 "\
  1313. *Specifies how many days of diary entries are to be displayed initially.
  1314. This variable affects the diary display when the command M-x diary is used,
  1315. or if the value of the variable `view-diary-entries-initially' is t.  For
  1316. example, if the default value 1 is used, then only the current day's diary
  1317. entries will be displayed.  If the value 2 is used, then both the current
  1318. day's and the next day's entries will be displayed.
  1319.  
  1320. The value can also be a vector such as [0 2 2 2 2 4 1]; this value
  1321. says to display no diary entries on Sunday, the display the entries
  1322. for the current date and the day after on Monday through Thursday,
  1323. display Friday through Monday's entries on Friday, and display only
  1324. Saturday's entries on Saturday.
  1325.  
  1326. This variable does not affect the diary display with the `d' command
  1327. from the calendar; in that case, the prefix argument controls the
  1328. number of days of diary entries displayed.")
  1329.  
  1330. (defvar mark-diary-entries-in-calendar nil "\
  1331. *Non-nil means mark dates with diary entries, in the calendar window.
  1332. The marking symbol is specified by the variable `diary-entry-marker'.")
  1333.  
  1334. (defvar view-calendar-holidays-initially nil "\
  1335. *Non-nil means display holidays for current three month period on entry.
  1336. The holidays are displayed in another window when the calendar is first
  1337. displayed.")
  1338.  
  1339. (defvar mark-holidays-in-calendar nil "\
  1340. *Non-nil means mark dates of holidays in the calendar window.
  1341. The marking symbol is specified by the variable `calendar-holiday-marker'.")
  1342.  
  1343. (defvar all-hebrew-calendar-holidays nil "\
  1344. *If nil, show only major holidays from the Hebrew calendar.
  1345. This means only those Jewish holidays that appear on secular calendars.
  1346.  
  1347. If t, show all the holidays that would appear in a complete Hebrew calendar.")
  1348.  
  1349. (defvar all-christian-calendar-holidays nil "\
  1350. *If nil, show only major holidays from the Christian calendar.
  1351. This means only those Christian holidays that appear on secular calendars.
  1352.  
  1353. If t, show all the holidays that would appear in a complete Christian
  1354. calendar.")
  1355.  
  1356. (defvar all-islamic-calendar-holidays nil "\
  1357. *If nil, show only major holidays from the Islamic calendar.
  1358. This means only those Islamic holidays that appear on secular calendars.
  1359.  
  1360. If t, show all the holidays that would appear in a complete Islamic
  1361. calendar.")
  1362.  
  1363. (defvar calendar-load-hook nil "\
  1364. *List of functions to be called after the calendar is first loaded.
  1365. This is the place to add key bindings to `calendar-mode-map'.")
  1366.  
  1367. (defvar initial-calendar-window-hook nil "\
  1368. *List of functions to be called when the calendar window is first opened.
  1369. The functions invoked are called after the calendar window is opened, but
  1370. once opened is never called again.  Leaving the calendar with the `q' command
  1371. and reentering it will cause these functions to be called again.")
  1372.  
  1373. (defvar today-visible-calendar-hook nil "\
  1374. *List of functions called whenever the current date is visible.
  1375. This can be used, for example, to replace today's date with asterisks; a
  1376. function `calendar-star-date' is included for this purpose:
  1377.     (setq today-visible-calendar-hook 'calendar-star-date)
  1378. It can also be used to mark the current date with `calendar-today-marker';
  1379. a function is also provided for this:
  1380.     (setq today-visible-calendar-hook 'calendar-mark-today)
  1381.  
  1382. The corresponding variable `today-invisible-calendar-hook' is the list of
  1383. functions called when the calendar function was called when the current
  1384. date is not visible in the window.
  1385.  
  1386. Other than the use of the provided functions, the changing of any
  1387. characters in the calendar buffer by the hooks may cause the failure of the
  1388. functions that move by days and weeks.")
  1389.  
  1390. (defvar today-invisible-calendar-hook nil "\
  1391. *List of functions called whenever the current date is not visible.
  1392.  
  1393. The corresponding variable `today-visible-calendar-hook' is the list of
  1394. functions called when the calendar function was called when the current
  1395. date is visible in the window.
  1396.  
  1397. Other than the use of the provided functions, the changing of any
  1398. characters in the calendar buffer by the hooks may cause the failure of the
  1399. functions that move by days and weeks.")
  1400.  
  1401. (defvar diary-file "~/diary" "\
  1402. *Name of the file in which one's personal diary of dates is kept.
  1403.  
  1404. The file's entries are lines in any of the forms
  1405.  
  1406.             MONTH/DAY
  1407.             MONTH/DAY/YEAR
  1408.             MONTHNAME DAY
  1409.             MONTHNAME DAY, YEAR
  1410.             DAYNAME
  1411.  
  1412. at the beginning of the line; the remainder of the line is the diary entry
  1413. string for that date.  MONTH and DAY are one or two digit numbers, YEAR is
  1414. a number and may be written in full or abbreviated to the final two digits.
  1415. If the date does not contain a year, it is generic and applies to any year.
  1416. DAYNAME entries apply to any date on which is on that day of the week.
  1417. MONTHNAME and DAYNAME can be spelled in full, abbreviated to three
  1418. characters (with or without a period), capitalized or not.  Any of DAY,
  1419. MONTH, or MONTHNAME, YEAR can be `*' which matches any day, month, or year,
  1420. respectively.
  1421.  
  1422. The European style (in which the day precedes the month) can be used
  1423. instead, if you execute `european-calendar' when in the calendar, or set
  1424. `european-calendar-style' to t in your .emacs file.  The European forms are
  1425.  
  1426.             DAY/MONTH
  1427.             DAY/MONTH/YEAR
  1428.             DAY MONTHNAME
  1429.             DAY MONTHNAME YEAR
  1430.             DAYNAME
  1431.  
  1432. To revert to the default American style from the European style, execute
  1433. `american-calendar' in the calendar.
  1434.  
  1435. A diary entry can be preceded by the character
  1436. `diary-nonmarking-symbol' (ordinarily `&') to make that entry
  1437. nonmarking--that is, it will not be marked on dates in the calendar
  1438. window but will appear in a diary window.
  1439.  
  1440. Multiline diary entries are made by indenting lines after the first with
  1441. either a TAB or one or more spaces.
  1442.  
  1443. Lines not in one the above formats are ignored.  Here are some sample diary
  1444. entries (in the default American style):
  1445.  
  1446.      12/22/1988 Twentieth wedding anniversary!!
  1447.      &1/1. Happy New Year!
  1448.      10/22 Ruth's birthday.
  1449.      21: Payday
  1450.      Tuesday--weekly meeting with grad students at 10am
  1451.               Supowit, Shen, Bitner, and Kapoor to attend.
  1452.      1/13/89 Friday the thirteenth!!
  1453.      &thu 4pm squash game with Lloyd.
  1454.      mar 16 Dad's birthday
  1455.      April 15, 1989 Income tax due.
  1456.      &* 15 time cards due.
  1457.  
  1458. If the first line of a diary entry consists only of the date or day name with
  1459. no trailing blanks or punctuation, then that line is not displayed in the
  1460. diary window; only the continuation lines is shown.  For example, the
  1461. single diary entry
  1462.  
  1463.      02/11/1989
  1464.       Bill Blattner visits Princeton today
  1465.       2pm Cognitive Studies Committee meeting
  1466.       2:30-5:30 Lizzie at Lawrenceville for `Group Initiative'
  1467.       4:00pm Jamie Tappenden
  1468.       7:30pm Dinner at George and Ed's for Alan Ryan
  1469.       7:30-10:00pm dance at Stewart Country Day School
  1470.  
  1471. will appear in the diary window without the date line at the beginning.  This
  1472. facility allows the diary window to look neater, but can cause confusion if
  1473. used with more than one day's entries displayed.
  1474.  
  1475. Diary entries can be based on Lisp sexps.  For example, the diary entry
  1476.  
  1477.       %%(diary-block 11 1 1990 11 10 1990) Vacation
  1478.  
  1479. causes the diary entry \"Vacation\" to appear from November 1 through November
  1480. 10, 1990.  Other functions available are `diary-float', `diary-anniversary',
  1481. `diary-cyclic', `diary-day-of-year', `diary-iso-date', `diary-french-date',
  1482. `diary-hebrew-date', `diary-islamic-date', `diary-mayan-date',
  1483. `diary-yahrzeit', `diary-sunrise-sunset', `diary-phases-of-moon',
  1484. `diary-parasha', `diary-omer', `diary-rosh-hodesh', and
  1485. `diary-sabbath-candles'.  See the documentation for the function
  1486. `list-sexp-diary-entries' for more details.
  1487.  
  1488. Diary entries based on the Hebrew and/or the Islamic calendar are also
  1489. possible, but because these are somewhat slow, they are ignored
  1490. unless you set the `nongregorian-diary-listing-hook' and the
  1491. `nongregorian-diary-marking-hook' appropriately.  See the documentation
  1492. for these functions for details.
  1493.  
  1494. Diary files can contain directives to include the contents of other files; for
  1495. details, see the documentation for the variable `list-diary-entries-hook'.")
  1496.  
  1497. (defvar diary-nonmarking-symbol "&" "\
  1498. *Symbol indicating that a diary entry is not to be marked in the calendar.")
  1499.  
  1500. (defvar hebrew-diary-entry-symbol "H" "\
  1501. *Symbol indicating a diary entry according to the Hebrew calendar.")
  1502.  
  1503. (defvar islamic-diary-entry-symbol "I" "\
  1504. *Symbol indicating a diary entry according to the Islamic calendar.")
  1505.  
  1506. (defvar diary-include-string "#include" "\
  1507. *The string indicating inclusion of another file of diary entries.
  1508. See the documentation for the function `include-other-diary-files'.")
  1509.  
  1510. (defvar sexp-diary-entry-symbol "%%" "\
  1511. *The string used to indicate a sexp diary entry in diary-file.
  1512. See the documentation for the function `list-sexp-diary-entries'.")
  1513.  
  1514. (defvar abbreviated-calendar-year t "\
  1515. *Interpret a two-digit year DD in a diary entry as either 19DD or 20DD.
  1516. For the Gregorian calendar; similarly for the Hebrew and Islamic calendars.
  1517. If this variable is nil, years must be written in full.")
  1518.  
  1519. (defvar european-calendar-style nil "\
  1520. *Use the European style of dates in the diary and in any displays.
  1521. If this variable is t, a date 1/2/1990 would be interpreted as February 1,
  1522. 1990.  The accepted European date styles are
  1523.  
  1524.             DAY/MONTH
  1525.             DAY/MONTH/YEAR
  1526.             DAY MONTHNAME
  1527.             DAY MONTHNAME YEAR
  1528.             DAYNAME
  1529.  
  1530. Names can be capitalized or not, written in full, or abbreviated to three
  1531. characters with or without a period.")
  1532.  
  1533. (defvar american-date-diary-pattern (quote ((month "/" day "[^/0-9]") (month "/" day "/" year "[^0-9]") (monthname " *" day "[^,0-9]") (monthname " *" day ", *" year "[^0-9]") (dayname "\\W"))) "\
  1534. *List of pseudo-patterns describing the American patterns of date used.
  1535. See the documentation of `diary-date-forms' for an explanation.")
  1536.  
  1537. (defvar european-date-diary-pattern (quote ((day "/" month "[^/0-9]") (day "/" month "/" year "[^0-9]") (backup day " *" monthname "\\W+\\<[^*0-9]") (day " *" monthname " *" year "[^0-9]") (dayname "\\W"))) "\
  1538. *List of pseudo-patterns describing the European patterns of date used.
  1539. See the documentation of `diary-date-forms' for an explanation.")
  1540.  
  1541. (defvar european-calendar-display-form (quote ((if dayname (concat dayname ", ")) day " " monthname " " year)) "\
  1542. *Pseudo-pattern governing the way a date appears in the European style.
  1543. See the documentation of calendar-date-display-form for an explanation.")
  1544.  
  1545. (defvar american-calendar-display-form (quote ((if dayname (concat dayname ", ")) monthname " " day ", " year)) "\
  1546. *Pseudo-pattern governing the way a date appears in the American style.
  1547. See the documentation of `calendar-date-display-form' for an explanation.")
  1548.  
  1549. (defvar print-diary-entries-hook (quote lpr-buffer) "\
  1550. *List of functions called after a temporary diary buffer is prepared.
  1551. The buffer shows only the diary entries currently visible in the diary
  1552. buffer.  The default just does the printing.  Other uses might include, for
  1553. example, rearranging the lines into order by day and time, saving the buffer
  1554. instead of deleting it, or changing the function used to do the printing.")
  1555.  
  1556. (defvar list-diary-entries-hook nil "\
  1557. *List of functions called after diary file is culled for relevant entries.
  1558. It is to be used for diary entries that are not found in the diary file.
  1559.  
  1560. A function `include-other-diary-files' is provided for use as the value of
  1561. this hook.  This function enables you to use shared diary files together
  1562. with your own.  The files included are specified in the diary file by lines
  1563. of the form
  1564.  
  1565.         #include \"filename\"
  1566.  
  1567. This is recursive; that is, #include directives in files thus included are
  1568. obeyed.  You can change the \"#include\" to some other string by changing
  1569. the variable `diary-include-string'.  When you use `include-other-diary-files'
  1570. as part of the list-diary-entries-hook, you will probably also want to use the
  1571. function `mark-included-diary-files' as part of `mark-diary-entries-hook'.
  1572.  
  1573. For example, you could use
  1574.  
  1575.      (setq list-diary-entries-hook
  1576.        '(include-other-diary-files sort-diary-entries))
  1577.      (setq diary-display-hook 'fancy-diary-display)
  1578.  
  1579. in your `.emacs' file to cause the fancy diary buffer to be displayed with
  1580. diary entries from various included files, each day's entries sorted into
  1581. lexicographic order.")
  1582.  
  1583. (defvar diary-hook nil "\
  1584. *List of functions called after the display of the diary.
  1585. Can be used for appointment notification.")
  1586.  
  1587. (defvar diary-display-hook nil "\
  1588. *List of functions that handle the display of the diary.
  1589. If nil (the default), `simple-diary-display' is used.  Use `ignore' for no
  1590. diary display.
  1591.  
  1592. Ordinarily, this just displays the diary buffer (with holidays indicated in
  1593. the mode line), if there are any relevant entries.  At the time these
  1594. functions are called, the variable `diary-entries-list' is a list, in order
  1595. by date, of all relevant diary entries in the form of ((MONTH DAY YEAR)
  1596. STRING), where string is the diary entry for the given date.  This can be
  1597. used, for example, a different buffer for display (perhaps combined with
  1598. holidays), or produce hard copy output.
  1599.  
  1600. A function `fancy-diary-display' is provided as an alternative
  1601. choice for this hook; this function prepares a special noneditable diary
  1602. buffer with the relevant diary entries that has neat day-by-day arrangement
  1603. with headings.  The fancy diary buffer will show the holidays unless the
  1604. variable `holidays-in-diary-buffer' is set to nil.  Ordinarily, the fancy
  1605. diary buffer will not show days for which there are no diary entries, even
  1606. if that day is a holiday; if you want such days to be shown in the fancy
  1607. diary buffer, set the variable `diary-list-include-blanks' to t.")
  1608.  
  1609. (defvar nongregorian-diary-listing-hook nil "\
  1610. *List of functions called for listing diary file and included files.
  1611. As the files are processed for diary entries, these functions are used to cull
  1612. relevant entries.  You can use either or both of `list-hebrew-diary-entries'
  1613. and `list-islamic-diary-entries'.  The documentation for these functions
  1614. describes the style of such diary entries.")
  1615.  
  1616. (defvar mark-diary-entries-hook nil "\
  1617. *List of functions called after marking diary entries in the calendar.
  1618.  
  1619. A function `mark-included-diary-files' is also provided for use as the
  1620. mark-diary-entries-hook; it enables you to use shared diary files together
  1621. with your own.  The files included are specified in the diary file by lines
  1622. of the form
  1623.         #include \"filename\"
  1624. This is recursive; that is, #include directives in files thus included are
  1625. obeyed.  You can change the \"#include\" to some other string by changing the
  1626. variable `diary-include-string'.  When you use `mark-included-diary-files' as
  1627. part of the mark-diary-entries-hook, you will probably also want to use the
  1628. function `include-other-diary-files' as part of `list-diary-entries-hook'.")
  1629.  
  1630. (defvar nongregorian-diary-marking-hook nil "\
  1631. *List of functions called for marking diary file and included files.
  1632. As the files are processed for diary entries, these functions are used to cull
  1633. relevant entries.  You can use either or both of `mark-hebrew-diary-entries'
  1634. and `mark-islamic-diary-entries'.  The documentation for these functions
  1635. describes the style of such diary entries.")
  1636.  
  1637. (defvar diary-list-include-blanks nil "\
  1638. *If nil, do not include days with no diary entry in the list of diary entries.
  1639. Such days will then not be shown in the the fancy diary buffer, even if they
  1640. are holidays.")
  1641.  
  1642. (defvar holidays-in-diary-buffer t "\
  1643. *Non-nil means include holidays in the diary display.
  1644. The holidays appear in the mode line of the diary buffer, or in the
  1645. fancy diary buffer next to the date.  This slows down the diary functions
  1646. somewhat; setting it to nil makes the diary display faster.")
  1647.  
  1648. (put (quote general-holidays) (quote risky-local-variable) t)
  1649.  
  1650. (defvar general-holidays (quote ((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Ground Hog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-float 2 1 3 "President's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fool's Day") (holiday-float 5 0 2 "Mother's Day") (holiday-float 5 1 -1 "Memorial Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 7 4 "Independence Day") (holiday-float 9 1 1 "Labor Day") (holiday-float 10 1 2 "Columbus Day") (holiday-fixed 10 31 "Halloween") (holiday-fixed 11 11 "Veteran's Day") (holiday-float 11 4 4 "Thanksgiving"))) "\
  1651. *General holidays.  Default value is for the United States.
  1652. See the documentation for `calendar-holidays' for details.")
  1653.  
  1654. (put (quote local-holidays) (quote risky-local-variable) t)
  1655.  
  1656. (defvar local-holidays nil "\
  1657. *Local holidays.
  1658. See the documentation for `calendar-holidays' for details.")
  1659.  
  1660. (put (quote other-holidays) (quote risky-local-variable) t)
  1661.  
  1662. (defvar other-holidays nil "\
  1663. *User defined holidays.
  1664. See the documentation for `calendar-holidays' for details.")
  1665.  
  1666. (put (quote hebrew-holidays-1) (quote risky-local-variable) t)
  1667.  
  1668. (defvar hebrew-holidays-1 (quote ((holiday-rosh-hashanah-etc) (if all-hebrew-calendar-holidays (holiday-julian 11 (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (if (zerop (% (1+ year) 4)) 22 21))) "\"Tal Umatar\" (evening)")))))
  1669.  
  1670. (put (quote hebrew-holidays-2) (quote risky-local-variable) t)
  1671.  
  1672. (defvar hebrew-holidays-2 (quote ((if all-hebrew-calendar-holidays (holiday-hanukkah) (holiday-hebrew 9 25 "Hanukkah")) (if all-hebrew-calendar-holidays (holiday-hebrew 10 (let ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list displayed-month 28 displayed-year)))))) (if (= (% (calendar-absolute-from-hebrew (list 10 10 h-year)) 7) 6) 11 10)) "Tzom Teveth")) (if all-hebrew-calendar-holidays (holiday-hebrew 11 15 "Tu B'Shevat")))))
  1673.  
  1674. (put (quote hebrew-holidays-3) (quote risky-local-variable) t)
  1675.  
  1676. (defvar hebrew-holidays-3 (quote ((if all-hebrew-calendar-holidays (holiday-hebrew 11 (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (let* ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))) (s-s (calendar-hebrew-from-absolute (if (= (% (calendar-absolute-from-hebrew (list 7 1 h-year)) 7) 6) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 17 h-year))) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 16 h-year)))))) (day (extract-calendar-day s-s))) day)) "Shabbat Shirah")))))
  1677.  
  1678. (put (quote hebrew-holidays-4) (quote risky-local-variable) t)
  1679.  
  1680. (defvar hebrew-holidays-4 (quote ((holiday-passover-etc) (if (and all-hebrew-calendar-holidays (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (= 21 (% year 28))))) (holiday-julian 3 26 "Kiddush HaHamah")) (if all-hebrew-calendar-holidays (holiday-tisha-b-av-etc)))))
  1681.  
  1682. (put (quote hebrew-holidays) (quote risky-local-variable) t)
  1683.  
  1684. (defvar hebrew-holidays (append hebrew-holidays-1 hebrew-holidays-2 hebrew-holidays-3 hebrew-holidays-4) "\
  1685. *Jewish holidays.
  1686. See the documentation for `calendar-holidays' for details.")
  1687.  
  1688. (put (quote christian-holidays) (quote risky-local-variable) t)
  1689.  
  1690. (defvar christian-holidays (quote ((if all-christian-calendar-holidays (holiday-fixed 1 6 "Epiphany")) (holiday-easter-etc) (if all-christian-calendar-holidays (holiday-greek-orthodox-easter)) (if all-christian-calendar-holidays (holiday-fixed 8 15 "Assumption")) (if all-christian-calendar-holidays (holiday-advent)) (holiday-fixed 12 25 "Christmas") (if all-christian-calendar-holidays (holiday-julian 12 25 "Eastern Orthodox Christmas")))) "\
  1691. *Christian holidays.
  1692. See the documentation for `calendar-holidays' for details.")
  1693.  
  1694. (put (quote islamic-holidays) (quote risky-local-variable) t)
  1695.  
  1696. (defvar islamic-holidays (quote ((holiday-islamic 1 1 (format "Islamic New Year %d" (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (extract-calendar-year (calendar-islamic-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))))) (if all-islamic-calendar-holidays (holiday-islamic 1 10 "Ashura")) (if all-islamic-calendar-holidays (holiday-islamic 3 12 "Mulad-al-Nabi")) (if all-islamic-calendar-holidays (holiday-islamic 7 26 "Shab-e-Mi'raj")) (if all-islamic-calendar-holidays (holiday-islamic 8 15 "Shab-e-Bara't")) (holiday-islamic 9 1 "Ramadan Begins") (if all-islamic-calendar-holidays (holiday-islamic 9 27 "Shab-e Qadr")) (if all-islamic-calendar-holidays (holiday-islamic 10 1 "Id-al-Fitr")) (if all-islamic-calendar-holidays (holiday-islamic 12 10 "Id-al-Adha")))) "\
  1697. *Islamic holidays.
  1698. See the documentation for `calendar-holidays' for details.")
  1699.  
  1700. (put (quote solar-holidays) (quote risky-local-variable) t)
  1701.  
  1702. (defvar solar-holidays (quote ((if (fboundp (quote atan)) (solar-equinoxes-solstices)) (if (progn (require (quote cal-dst)) t) (funcall (quote holiday-sexp) calendar-daylight-savings-starts (quote (format "Daylight Savings Time Begins %s" (if (fboundp (quote atan)) (solar-time-string (/ calendar-daylight-savings-starts-time (float 60)) calendar-standard-time-zone-name) ""))))) (funcall (quote holiday-sexp) calendar-daylight-savings-ends (quote (format "Daylight Savings Time Ends %s" (if (fboundp (quote atan)) (solar-time-string (/ calendar-daylight-savings-ends-time (float 60)) calendar-daylight-time-zone-name) "")))))) "\
  1703. *Sun-related holidays.
  1704. See the documentation for `calendar-holidays' for details.")
  1705.  
  1706. (put (quote calendar-holidays) (quote risky-local-variable) t)
  1707.  
  1708. (autoload (quote calendar) "calendar" "\
  1709. Display a three-month calendar in another window.
  1710. The three months appear side by side, with the current month in the middle
  1711. surrounded by the previous and next months.  The cursor is put on today's date.
  1712.  
  1713. If called with an optional prefix argument, prompts for month and year.
  1714.  
  1715. This function is suitable for execution in a .emacs file; appropriate setting
  1716. of the variable `view-diary-entries-initially' will cause the diary entries for
  1717. the current date to be displayed in another window.  The value of the variable
  1718. `number-of-diary-entries' controls the number of days of diary entries
  1719. displayed upon initial display of the calendar.
  1720.  
  1721. An optional prefix argument ARG causes the calendar displayed to be ARG
  1722. months in the future if ARG is positive or in the past if ARG is negative;
  1723. in this case the cursor goes on the first day of the month.
  1724.  
  1725. Once in the calendar window, future or past months can be moved into view.
  1726. Arbitrary months can be displayed, or the calendar can be scrolled forward
  1727. or backward.
  1728.  
  1729. The cursor can be moved forward or backward by one day, one week, one month,
  1730. or one year.  All of these commands take prefix arguments which, when negative,
  1731. cause movement in the opposite direction.  For convenience, the digit keys
  1732. and the minus sign are automatically prefixes.  The window is replotted as
  1733. necessary to display the desired date.
  1734.  
  1735. Diary entries can be marked on the calendar or displayed in another window.
  1736.  
  1737. Use M-x describe-mode for details of the key bindings in the calendar window.
  1738.  
  1739. The Gregorian calendar is assumed.
  1740.  
  1741. After loading the calendar, the hooks given by the variable
  1742. `calendar-load-hook' are run.  This the place to add key bindings to the
  1743. calendar-mode-map.
  1744.  
  1745. After preparing the calendar window initially, the hooks given by the variable
  1746. `initial-calendar-window-hook' are run.
  1747.  
  1748. The hooks given by the variable `today-visible-calendar-hook' are run
  1749. everytime the calendar window gets scrolled, if the current date is visible
  1750. in the window.  If it is not visible, the hooks given by the variable
  1751. `today-invisible-calendar-hook' are run.  Thus, for example, setting
  1752. `today-visible-calendar-hook' to 'calendar-star-date will cause today's date
  1753. to be replaced by asterisks to highlight it whenever it is in the window." t nil)
  1754.  
  1755. (autoload (quote list-yahrzeit-dates) "calendar" "\
  1756. List Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to END-YEAR.
  1757. When called interactively from the calendar window, the date of death is taken
  1758. from the cursor position." t nil)
  1759.  
  1760. ;;;***
  1761.  
  1762. ;;;### (autoloads (set-case-syntax set-case-syntax-pair set-case-syntax-delims describe-buffer-case-table) "case-table" "case-table.el" (11711 14946))
  1763. ;;; Generated autoloads from case-table.el
  1764.  
  1765. (autoload (quote describe-buffer-case-table) "case-table" "\
  1766. Describe the case table of the current buffer." t nil)
  1767.  
  1768. (autoload (quote set-case-syntax-delims) "case-table" "\
  1769. Make characters L and R a matching pair of non-case-converting delimiters.
  1770. This sets the entries for L and R in TABLE, which is a string
  1771. that will be used as the downcase part of a case table.
  1772. It also modifies `standard-syntax-table' to
  1773. indicate left and right delimiters." nil nil)
  1774.  
  1775. (autoload (quote set-case-syntax-pair) "case-table" "\
  1776. Make characters UC and LC a pair of inter-case-converting letters.
  1777. This sets the entries for characters UC and LC in TABLE, which is a string
  1778. that will be used as the downcase part of a case table.
  1779. It also modifies `standard-syntax-table' to give them the syntax of
  1780. word constituents." nil nil)
  1781.  
  1782. (autoload (quote set-case-syntax) "case-table" "\
  1783. Make characters C case-invariant with syntax SYNTAX.
  1784. This sets the entries for character C in TABLE, which is a string
  1785. that will be used as the downcase part of a case table.
  1786. It also modifies `standard-syntax-table'.
  1787. SYNTAX should be \" \", \"w\", \".\" or \"_\"." nil nil)
  1788.  
  1789. ;;;***
  1790.  
  1791. ;;;### (autoloads (command-history-mode list-command-history repeat-matching-complex-command) "chistory" "chistory.el" (11196 27803))
  1792. ;;; Generated autoloads from chistory.el
  1793.  
  1794. (autoload (quote repeat-matching-complex-command) "chistory" "\
  1795. Edit and re-evaluate complex command with name matching PATTERN.
  1796. Matching occurrences are displayed, most recent first, until you select
  1797. a form for evaluation.  If PATTERN is empty (or nil), every form in the
  1798. command history is offered.  The form is placed in the minibuffer for
  1799. editing and the result is evaluated." t nil)
  1800.  
  1801. (autoload (quote list-command-history) "chistory" "\
  1802. List history of commands typed to minibuffer.
  1803. The number of commands listed is controlled by `list-command-history-max'.
  1804. Calls value of `list-command-history-filter' (if non-nil) on each history
  1805. element to judge if that element should be excluded from the list.
  1806.  
  1807. The buffer is left in Command History mode." t nil)
  1808.  
  1809. (autoload (quote command-history-mode) "chistory" "\
  1810. Major mode for examining commands from `command-history'.
  1811. The number of commands listed is controlled by `list-command-history-max'.
  1812. The command history is filtered by `list-command-history-filter' if non-nil.
  1813. Use \\<command-history-map>\\[command-history-repeat] to repeat the command on the current line.
  1814.  
  1815. Otherwise much like Emacs-Lisp Mode except that there is no self-insertion
  1816. and digits provide prefix arguments.  Tab does not indent.
  1817. \\{command-history-map}
  1818. Calls the value of `command-history-hook' if that is non-nil.
  1819. The Command History listing is recomputed each time this mode is invoked." t nil)
  1820.  
  1821. ;;;***
  1822.  
  1823. ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "cl-indent.el" (11285 49748))
  1824. ;;; Generated autoloads from cl-indent.el
  1825.  
  1826. (autoload (quote common-lisp-indent-function) "cl-indent" nil nil nil)
  1827.  
  1828. ;;;***
  1829.  
  1830. ;;;### (autoloads (comint-run make-comint) "comint" "comint.el" (11706 10247))
  1831. ;;; Generated autoloads from comint.el
  1832.  
  1833. (autoload (quote make-comint) "comint" "\
  1834. Make a comint process NAME in a buffer, running PROGRAM.
  1835. The name of the buffer is made by surrounding NAME with `*'s.
  1836. If there is already a running process in that buffer, it is not restarted.
  1837. Optional third arg STARTFILE is the name of a file to send the contents of to 
  1838. the process.  Any more args are arguments to PROGRAM." nil nil)
  1839.  
  1840. (autoload (quote comint-run) "comint" "\
  1841. Run PROGRAM in a comint buffer and switch to it.
  1842. The buffer name is made by surrounding the file name of PROGRAM with `*'s.
  1843. The file name is used to make a symbol name, such as `comint-sh-hook', and any
  1844. hooks on this symbol are run in the buffer.
  1845. See `make-comint' and `comint-exec'." t nil)
  1846.  
  1847. ;;;***
  1848.  
  1849. ;;;### (autoloads (compare-windows) "compare-w" "compare-w.el" (11493 40513))
  1850. ;;; Generated autoloads from compare-w.el
  1851.  
  1852. (autoload (quote compare-windows) "compare-w" "\
  1853. Compare text in current window with text in next window.
  1854. Compares the text starting at point in each window,
  1855. moving over text in each one as far as they match.
  1856.  
  1857. A prefix arg means ignore changes in whitespace.
  1858. The variable `compare-windows-whitespace' controls how whitespace is skipped.
  1859. If `compare-ignore-case' is non-nil, changes in case are also ignored." t nil)
  1860.  
  1861. ;;;***
  1862.  
  1863. ;;;### (autoloads (next-error compilation-minor-mode grep compile) "compile" "compile.el" (11712 23136))
  1864. ;;; Generated autoloads from compile.el
  1865.  
  1866. (defvar compilation-mode-hook nil "\
  1867. *List of hook functions run by `compilation-mode' (see `run-hooks').")
  1868.  
  1869. (defconst compilation-window-height nil "\
  1870. *Number of lines in a compilation window.  If nil, use Emacs default.")
  1871.  
  1872. (defvar compilation-buffer-name-function nil "\
  1873. Function to compute the name of a compilation buffer.
  1874. The function receives one argument, the name of the major mode of the
  1875. compilation buffer.  It should return a string.
  1876. nil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.")
  1877.  
  1878. (defvar compilation-finish-function nil "\
  1879. *Function to call when a compilation process finishes.
  1880. It is called with two arguments: the compilation buffer, and a string
  1881. describing how the process finished.")
  1882.  
  1883. (defvar compilation-search-path (quote (nil)) "\
  1884. *List of directories to search for source files named in error messages.
  1885. Elements should be directory names, not file names of directories.
  1886. nil as an element means to try the default directory.")
  1887.  
  1888. (autoload (quote compile) "compile" "\
  1889. Compile the program including the current buffer.  Default: run `make'.
  1890. Runs COMMAND, a shell command, in a separate process asynchronously
  1891. with output going to the buffer `*compilation*'.
  1892.  
  1893. You can then use the command \\[next-error] to find the next error message
  1894. and move to the source code that caused it.
  1895.  
  1896. To run more than one compilation at once, start one and rename the
  1897. `*compilation*' buffer to some other name with \\[rename-buffer].
  1898. Then start the next one.
  1899.  
  1900. The name used for the buffer is actually whatever is returned by
  1901. the function in `compilation-buffer-name-function', so you can set that
  1902. to a function that generates a unique name." t nil)
  1903.  
  1904. (autoload (quote grep) "compile" "\
  1905. Run grep, with user-specified args, and collect output in a buffer.
  1906. While grep runs asynchronously, you can use the \\[next-error] command
  1907. to find the text that grep hits refer to.
  1908.  
  1909. This command uses a special history list for its arguments, so you can
  1910. easily repeat a grep command." t nil)
  1911.  
  1912. (autoload (quote compilation-minor-mode) "compile" "\
  1913. Toggle compilation minor mode.
  1914. With arg, turn compilation mode on if and only if arg is positive.
  1915. See `compilation-mode'." t nil)
  1916.  
  1917. (autoload (quote next-error) "compile" "\
  1918. Visit next compilation error message and corresponding source code.
  1919. This operates on the output from the \\[compile] command.
  1920. If all preparsed error messages have been processed,
  1921. the error message buffer is checked for new ones.
  1922.  
  1923. A prefix arg specifies how many error messages to move;
  1924. negative means move back to previous error messages.
  1925. Just C-u as a prefix means reparse the error message buffer
  1926. and start at the first error.
  1927.  
  1928. \\[next-error] normally applies to the most recent compilation started,
  1929. but as long as you are in the middle of parsing errors from one compilation
  1930. output buffer, you stay with that compilation output buffer.
  1931.  
  1932. Use \\[next-error] in a compilation output buffer to switch to
  1933. processing errors from that compilation.
  1934.  
  1935. See variables `compilation-parse-errors-function' and
  1936. `compilation-error-regexp-alist' for customization ideas." t nil)
  1937. (define-key ctl-x-map "`" 'next-error)
  1938.  
  1939. ;;;***
  1940.  
  1941. ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) "cookie1" "cookie1.el" (11418 1804))
  1942. ;;; Generated autoloads from cookie1.el
  1943.  
  1944. (autoload (quote cookie) "cookie1" "\
  1945. Return a random phrase from PHRASE-FILE.  When the phrase file
  1946. is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil)
  1947.  
  1948. (autoload (quote cookie-insert) "cookie1" "\
  1949. Insert random phrases from PHRASE-FILE; COUNT of them.  When the phrase file
  1950. is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil)
  1951.  
  1952. (autoload (quote cookie-snarf) "cookie1" "\
  1953. Reads in the PHRASE-FILE, returns it as a vector of strings.
  1954. Emit STARTMSG and ENDMSG before and after.  Caches the result; second
  1955. and subsequent calls on the same file won't go to disk." nil nil)
  1956.  
  1957. (autoload (quote shuffle-vector) "cookie1" "\
  1958. Randomly permute the elements of VECTOR (all permutations equally likely)" nil nil)
  1959.  
  1960. ;;;***
  1961.  
  1962. ;;;### (autoloads (c++-mode) "cplus-md" "cplus-md.el" (11649 1462))
  1963. ;;; Generated autoloads from cplus-md.el
  1964.  
  1965. (autoload (quote c++-mode) "cplus-md" "\
  1966. Major mode for editing C++ code.  Very much like editing C code.
  1967. Expression and list commands understand all C++ brackets.
  1968. Tab at left margin indents for C++ code
  1969. Comments are delimited with /* ... */ {or with // ... <newline>}
  1970. Paragraphs are separated by blank lines only.
  1971. Delete converts tabs to spaces as it moves back.
  1972. \\{c++-mode-map}
  1973. Variables controlling indentation style:
  1974.  c-tab-always-indent
  1975.     Non-nil means TAB in C mode should always reindent the current line,
  1976.     regardless of where in the line point is when the TAB command is used.
  1977.     Default is t.
  1978.  c-auto-newline
  1979.     Non-nil means automatically newline before and after braces,
  1980.     and after colons and semicolons, inserted in C code.
  1981.  c-indent-level
  1982.     Indentation of C statements within surrounding block.
  1983.     The surrounding block's indentation is the indentation
  1984.     of the line on which the open-brace appears.
  1985.  c-continued-statement-offset
  1986.     Extra indentation given to a substatement, such as the
  1987.     then-clause of an if or body of a while.
  1988.  c-continued-brace-offset
  1989.     Extra indentation given to a brace that starts a substatement.
  1990.     This is in addition to c-continued-statement-offset.
  1991.  c-brace-offset
  1992.     Extra indentation for line if it starts with an open brace.
  1993.  c-brace-imaginary-offset
  1994.     An open brace following other text is treated as if it were
  1995.     this far to the right of the start of its line.
  1996.  c-argdecl-indent
  1997.     Indentation level of declarations of C function arguments.
  1998.  c-label-offset
  1999.     Extra indentation for line that is a label, or case or ``default:'', or
  2000.     ``public:'' or ``private:'', or ``protected:''.
  2001.  c++-electric-colon
  2002.     If non-nil at invocation of c++-mode (t is the default) colon electricly
  2003.     indents.
  2004.  c++-empty-arglist-indent
  2005.     If non-nil, a function declaration or invocation which ends a line with a
  2006.     left paren is indented this many extra spaces, instead of flush with the
  2007.     left paren.
  2008.  c++-friend-offset
  2009.     Offset of C++ friend declarations relative to member declarations.
  2010.  c++-member-init-indent
  2011.     Indentation level of member initializations in function declarations,
  2012.     if they are on a separate line beginning with a colon.
  2013.  c++-continued-member-init-offset
  2014.     Extra indentation for continuation lines of member initializations; NIL
  2015.     means to align with previous initializations rather than with the colon.
  2016.  
  2017. Settings for K&R, BSD, and Stroustrup indentation styles are
  2018.   c-indent-level                5    8    4
  2019.   c-continued-statement-offset  5    8    4
  2020.   c-continued-brace-offset                0
  2021.   c-brace-offset               -5   -8    0
  2022.   c-brace-imaginary-offset                0
  2023.   c-argdecl-indent              0    8    4
  2024.   c-label-offset               -5   -8   -4
  2025.   c++-empty-arglist-indent                4
  2026.   c++-friend-offset                       0
  2027.  
  2028. Turning on C++ mode calls the value of the variable `c++-mode-hook' with
  2029. no args if that value is non-nil." t nil)
  2030.  
  2031. ;;;***
  2032.  
  2033. ;;;### (autoloads (dabbrev-expand) "dabbrev" "dabbrev.el" (11577 36858))
  2034. ;;; Generated autoloads from dabbrev.el
  2035.  
  2036. (autoload (quote dabbrev-expand) "dabbrev" "\
  2037. Expand previous word \"dynamically\".
  2038. Expands to the most recent, preceding word for which this is a prefix.
  2039. If no suitable preceding word is found, words following point are considered.
  2040.  
  2041. If `case-fold-search' and `case-replace' are non-nil (usually true)
  2042. then the substituted word may be case-adjusted to match the abbreviation
  2043. that you had typed.  This takes place if the substituted word, as found,
  2044. is all lower case, or if it is at the beginning of a sentence and only
  2045. its first letter was upper case.
  2046.  
  2047. A positive prefix arg N says to take the Nth backward DISTINCT
  2048. possibility.  A negative argument says search forward.  The variable
  2049. `dabbrev-backward-only' may be used to limit the direction of search to
  2050. backward if set non-nil.
  2051.  
  2052. If the cursor has not moved from the end of the previous expansion and
  2053. no argument is given, replace the previously-made expansion
  2054. with the next possible expansion not yet tried." t nil)
  2055. (define-key esc-map "/" 'dabbrev-expand)
  2056.  
  2057. ;;;***
  2058.  
  2059. ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" "debug.el" (11695 36891))
  2060. ;;; Generated autoloads from debug.el
  2061.  
  2062. (setq debugger (quote debug))
  2063.  
  2064. (autoload (quote debug) "debug" "\
  2065. Enter debugger.  To return, type \\<debugger-mode-map>`\\[debugger-continue]'.
  2066. Arguments are mainly for use when this is called from the internals
  2067. of the evaluator.
  2068.  
  2069. You may call with no args, or you may pass nil as the first arg and
  2070. any other args you like.  In that case, the list of args after the
  2071. first will be printed into the backtrace buffer." nil nil)
  2072.  
  2073. (autoload (quote debug-on-entry) "debug" "\
  2074. Request FUNCTION to invoke debugger each time it is called.
  2075. If you tell the debugger to continue, FUNCTION's execution proceeds.
  2076. This works by modifying the definition of FUNCTION,
  2077. which must be written in Lisp, not predefined.
  2078. Use \\[cancel-debug-on-entry] to cancel the effect of this command.
  2079. Redefining FUNCTION also cancels it." t nil)
  2080.  
  2081. (autoload (quote cancel-debug-on-entry) "debug" "\
  2082. Undo effect of \\[debug-on-entry] on FUNCTION.
  2083. If argument is nil or an empty string, cancel for all functions." t nil)
  2084.  
  2085. ;;;***
  2086.  
  2087. ;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (11259 36696))
  2088. ;;; Generated autoloads from delsel.el
  2089.  
  2090. (defalias (quote pending-delete-mode) (quote delete-selection-mode))
  2091.  
  2092. (autoload (quote delete-selection-mode) "delsel" "\
  2093. Toggle Delete Selection mode.
  2094. When ON, typed text replaces the selection if the selection is active.
  2095. When OFF, typed text is just inserted at point." t nil)
  2096.  
  2097. ;;;***
  2098.  
  2099. ;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) "derived" "derived.el" (11750 52493))
  2100. ;;; Generated autoloads from derived.el
  2101.  
  2102. (autoload (quote define-derived-mode) "derived" "\
  2103. Create a new mode as a variant of an existing mode.
  2104.  
  2105. The arguments to this command are as follow:
  2106.  
  2107. PARENT:    the name of the command for the parent mode (ie. text-mode).
  2108. CHILD:     the name of the command for the derived mode.
  2109. NAME:      a string which will appear in the status line (ie. \"Hypertext\")
  2110. DOCSTRING: an optional documentation string--if you do not supply one,
  2111.            the function will attempt to invent something useful.
  2112. BODY:      forms to execute just before running the
  2113.            hooks for the new mode.
  2114.  
  2115. Here is how you could define LaTeX-Thesis mode as a variant of LaTeX mode:
  2116.  
  2117.   (define-derived-mode LaTeX-thesis-mode LaTeX-mode \"LaTeX-Thesis\")
  2118.  
  2119. You could then make new key bindings for `LaTeX-thesis-mode-map'
  2120. without changing regular LaTeX mode.  In this example, BODY is empty,
  2121. and DOCSTRING is generated by default.
  2122.  
  2123. On a more complicated level, the following command uses sgml-mode as
  2124. the parent, and then sets the variable `case-fold-search' to nil:
  2125.  
  2126.   (define-derived-mode article-mode sgml-mode \"Article\"
  2127.     \"Major mode for editing technical articles.\"
  2128.     (setq case-fold-search nil))
  2129.  
  2130. Note that if the documentation string had been left out, it would have
  2131. been generated automatically, with a reference to the keymap." nil (quote macro))
  2132.  
  2133. (autoload (quote derived-mode-init-mode-variables) "derived" "\
  2134. Initialise variables for a new mode. 
  2135. Right now, if they don't already exist, set up a blank keymap, an
  2136. empty syntax table, and an empty abbrev table -- these will be merged
  2137. the first time the mode is used." nil nil)
  2138.  
  2139. ;;;***
  2140.  
  2141. ;;;### (autoloads (diary) "diary-lib" "diary-lib.el" (11743 54256))
  2142. ;;; Generated autoloads from diary-lib.el
  2143.  
  2144. (autoload (quote diary) "diary-lib" "\
  2145. Generate the diary window for ARG days starting with the current date.
  2146. If no argument is provided, the number of days of diary entries is governed
  2147. by the variable `number-of-diary-entries'.  This function is suitable for
  2148. execution in a `.emacs' file." t nil)
  2149.  
  2150. ;;;***
  2151.  
  2152. ;;;### (autoloads (diff-backup diff) "diff" "diff.el" (11704 24421))
  2153. ;;; Generated autoloads from diff.el
  2154.  
  2155. (autoload (quote diff) "diff" "\
  2156. Find and display the differences between OLD and NEW files.
  2157. Interactively the current buffer's file name is the default for NEW
  2158. and a backup file for NEW is the default for OLD.
  2159. With prefix arg, prompt for diff switches." t nil)
  2160.  
  2161. (autoload (quote diff-backup) "diff" "\
  2162. Diff this file with its backup file or vice versa.
  2163. Uses the latest backup, if there are several numerical backups.
  2164. If this file is a backup, diff it with its original.
  2165. The backup file is the first file given to `diff'." t nil)
  2166.  
  2167. ;;;***
  2168.  
  2169. ;;;### (autoloads (dired-noselect dired-other-frame dired-other-window dired) "dired" "dired.el" (11717 17161))
  2170. ;;; Generated autoloads from dired.el
  2171.  
  2172. (defvar dired-listing-switches "-al" "\
  2173. *Switches passed to `ls' for dired.  MUST contain the `l' option.
  2174. May contain all other options that don't contradict `-l';
  2175. may contain even `F', `b', `i' and `s'.  See also the variable
  2176. `dired-ls-F-marks-symlinks' concerning the `F' switch.")
  2177.  
  2178. (defvar dired-chown-program (if (memq system-type (quote (hpux dgux usg-unix-v irix linux))) "chown" "/etc/chown") "\
  2179. Name of chown command (usually `chown' or `/etc/chown').")
  2180.  
  2181. (defvar dired-ls-F-marks-symlinks nil "\
  2182. *Informs dired about how `ls -lF' marks symbolic links.
  2183. Set this to t if `insert-directory-program' with `-lF' marks the symbolic link
  2184. itself with a trailing @ (usually the case under Ultrix).
  2185.  
  2186. Example: if `ln -s foo bar; ls -F bar' gives `bar -> foo', set it to
  2187. nil (the default), if it gives `bar@ -> foo', set it to t.
  2188.  
  2189. Dired checks if there is really a @ appended.  Thus, if you have a
  2190. marking `ls' program on one host and a non-marking on another host, and
  2191. don't care about symbolic links which really end in a @, you can
  2192. always set this variable to t.")
  2193.  
  2194. (defvar dired-trivial-filenames "^\\.\\.?$\\|^#" "\
  2195. *Regexp of files to skip when finding first file of a directory.
  2196. A value of nil means move to the subdir line.
  2197. A value of t means move to first file.")
  2198.  
  2199. (defvar dired-keep-marker-rename t "\
  2200. *Controls marking of renamed files.
  2201. If t, files keep their previous marks when they are renamed.
  2202. If a character, renamed files (whether previously marked or not)
  2203. are afterward marked with that character.")
  2204.  
  2205. (defvar dired-keep-marker-copy 67 "\
  2206. *Controls marking of copied files.
  2207. If t, copied files are marked if and as the corresponding original files were.
  2208. If a character, copied files are unconditionally marked with that character.")
  2209.  
  2210. (defvar dired-keep-marker-hardlink 72 "\
  2211. *Controls marking of newly made hard links.
  2212. If t, they are marked if and as the files linked to were marked.
  2213. If a character, new links are unconditionally marked with that character.")
  2214.  
  2215. (defvar dired-keep-marker-symlink 89 "\
  2216. *Controls marking of newly made symbolic links.
  2217. If t, they are marked if and as the files linked to were marked.
  2218. If a character, new links are unconditionally marked with that character.")
  2219.  
  2220. (defvar dired-dwim-target nil "\
  2221. *If non-nil, dired tries to guess a default target directory.
  2222. This means: if there is a dired buffer displayed in the next window,
  2223. use its current subdir, instead of the current subdir of this dired buffer.
  2224.  
  2225. The target is used in the prompt for file copy, rename etc.")
  2226.  
  2227. (defvar dired-copy-preserve-time t "\
  2228. *If non-nil, Dired preserves the last-modified time in a file copy.
  2229. \(This works on only some systems.)")
  2230. (define-key ctl-x-map "d" 'dired)
  2231.  
  2232. (autoload (quote dired) "dired" "\
  2233. \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it.
  2234. Optional second argument SWITCHES specifies the `ls' options used.
  2235. \(Interactively, use a prefix argument to be able to specify SWITCHES.)
  2236. Dired displays a list of files in DIRNAME (which may also have
  2237. shell wildcards appended to select certain files).  If DIRNAME is a cons,
  2238. its first element is taken as the directory name and the resr as an explicit
  2239. list of files to make directory entries for.
  2240. \\<dired-mode-map>You can move around in it with the usual commands.
  2241. You can flag files for deletion with \\[dired-flag-file-deletion] and then
  2242. delete them by typing \\[dired-do-flagged-delete].
  2243. Type \\[describe-mode] after entering dired for more info.
  2244.  
  2245. If DIRNAME is already in a dired buffer, that buffer is used without refresh." t nil)
  2246. (define-key ctl-x-4-map "d" 'dired-other-window)
  2247.  
  2248. (autoload (quote dired-other-window) "dired" "\
  2249. \"Edit\" directory DIRNAME.  Like `dired' but selects in another window." t nil)
  2250. (define-key ctl-x-5-map "d" 'dired-other-frame)
  2251.  
  2252. (autoload (quote dired-other-frame) "dired" "\
  2253. \"Edit\" directory DIRNAME.  Like `dired' but makes a new frame." t nil)
  2254.  
  2255. (autoload (quote dired-noselect) "dired" "\
  2256. Like `dired' but returns the dired buffer as value, does not select it." nil nil)
  2257.  
  2258. ;;;***
  2259.  
  2260. ;;;### (autoloads (dired-hide-all dired-hide-subdir dired-tree-down dired-tree-up dired-kill-subdir dired-mark-subdir-files dired-goto-subdir dired-prev-subdir dired-maybe-insert-subdir dired-downcase dired-upcase dired-do-symlink-regexp dired-do-hardlink-regexp dired-do-copy-regexp dired-do-rename-regexp dired-do-rename dired-do-hardlink dired-do-symlink dired-do-copy dired-create-directory dired-string-replace-match dired-rename-file dired-copy-file dired-relist-file dired-remove-file dired-add-file dired-do-redisplay dired-do-load dired-do-byte-compile dired-do-compress dired-compress-file dired-do-kill-lines dired-do-shell-command dired-do-print dired-do-chown dired-do-chgrp dired-do-chmod dired-backup-diff dired-diff) "dired-aux" "dired-aux.el" (11704 24382))
  2261. ;;; Generated autoloads from dired-aux.el
  2262.  
  2263. (autoload (quote dired-diff) "dired-aux" "\
  2264. Compare file at point with file FILE using `diff'.
  2265. FILE defaults to the file at the mark.
  2266. The prompted-for file is the first file given to `diff'.
  2267. With prefix arg, prompt for second argument SWITCHES,
  2268.  which is options for `diff'." t nil)
  2269.  
  2270. (autoload (quote dired-backup-diff) "dired-aux" "\
  2271. Diff this file with its backup file or vice versa.
  2272. Uses the latest backup, if there are several numerical backups.
  2273. If this file is a backup, diff it with its original.
  2274. The backup file is the first file given to `diff'.
  2275. With prefix arg, prompt for argument SWITCHES which is options for `diff'." t nil)
  2276.  
  2277. (autoload (quote dired-do-chmod) "dired-aux" "\
  2278. Change the mode of the marked (or next ARG) files.
  2279. This calls chmod, thus symbolic modes like `g+w' are allowed." t nil)
  2280.  
  2281. (autoload (quote dired-do-chgrp) "dired-aux" "\
  2282. Change the group of the marked (or next ARG) files." t nil)
  2283.  
  2284. (autoload (quote dired-do-chown) "dired-aux" "\
  2285. Change the owner of the marked (or next ARG) files." t nil)
  2286.  
  2287. (autoload (quote dired-do-print) "dired-aux" "\
  2288. Print the marked (or next ARG) files.
  2289. Uses the shell command coming from variables `lpr-command' and
  2290. `lpr-switches' as default." t nil)
  2291.  
  2292. (autoload (quote dired-do-shell-command) "dired-aux" "\
  2293. Run a shell command COMMAND on the marked files.
  2294. If no files are marked or a specific numeric prefix arg is given,
  2295. the next ARG files are used.  Just \\[universal-argument] means the current file.
  2296. The prompt mentions the file(s) or the marker, as appropriate.
  2297.  
  2298. If there is output, it goes to a separate buffer.
  2299.  
  2300. Normally the command is run on each file individually.
  2301. However, if there is a `*' in the command then it is run
  2302. just once with the entire file list substituted there.
  2303.  
  2304. No automatic redisplay of dired buffers is attempted, as there's no
  2305. telling what files the command may have changed.  Type
  2306. \\[dired-do-redisplay] to redisplay the marked files.
  2307.  
  2308. The shell command has the top level directory as working directory, so
  2309. output files usually are created there instead of in a subdir." t nil)
  2310.  
  2311. (autoload (quote dired-do-kill-lines) "dired-aux" "\
  2312. Kill all marked lines (not the files).
  2313. With a prefix argument, kill that many lines starting with the current line.
  2314. \(A negative argument kills lines before the current line.)
  2315. To kill an entire subdirectory, go to its directory header line
  2316. and use this command with a prefix argument (the value does not matter)." t nil)
  2317.  
  2318. (autoload (quote dired-compress-file) "dired-aux" nil nil nil)
  2319.  
  2320. (autoload (quote dired-do-compress) "dired-aux" "\
  2321. Compress or uncompress marked (or next ARG) files." t nil)
  2322.  
  2323. (autoload (quote dired-do-byte-compile) "dired-aux" "\
  2324. Byte compile marked (or next ARG) Emacs Lisp files." t nil)
  2325.  
  2326. (autoload (quote dired-do-load) "dired-aux" "\
  2327. Load the marked (or next ARG) Emacs Lisp files." t nil)
  2328.  
  2329. (autoload (quote dired-do-redisplay) "dired-aux" "\
  2330. Redisplay all marked (or next ARG) files.
  2331. If on a subdir line, redisplay that subdirectory.  In that case,
  2332. a prefix arg lets you edit the `ls' switches used for the new listing." t nil)
  2333.  
  2334. (autoload (quote dired-add-file) "dired-aux" nil nil nil)
  2335.  
  2336. (autoload (quote dired-remove-file) "dired-aux" nil nil nil)
  2337.  
  2338. (autoload (quote dired-relist-file) "dired-aux" nil nil nil)
  2339.  
  2340. (autoload (quote dired-copy-file) "dired-aux" nil nil nil)
  2341.  
  2342. (autoload (quote dired-rename-file) "dired-aux" nil nil nil)
  2343.  
  2344. (autoload (quote dired-string-replace-match) "dired-aux" "\
  2345. Replace first match of REGEXP in STRING with NEWTEXT.
  2346. If it does not match, nil is returned instead of the new string.
  2347. Optional arg LITERAL means to take NEWTEXT literally.
  2348. Optional arg GLOBAL means to replace all matches." nil nil)
  2349.  
  2350. (autoload (quote dired-create-directory) "dired-aux" "\
  2351. Create a directory called DIRECTORY." t nil)
  2352.  
  2353. (autoload (quote dired-do-copy) "dired-aux" "\
  2354. Copy all marked (or next ARG) files, or copy the current file.
  2355. This normally preserves the last-modified date when copying.
  2356. When operating on just the current file, you specify the new name.
  2357. When operating on multiple or marked files, you specify a directory
  2358. and new symbolic links are made in that directory
  2359. with the same names that the files currently have." t nil)
  2360.  
  2361. (autoload (quote dired-do-symlink) "dired-aux" "\
  2362. Make symbolic links to current file or all marked (or next ARG) files.
  2363. When operating on just the current file, you specify the new name.
  2364. When operating on multiple or marked files, you specify a directory
  2365. and new symbolic links are made in that directory
  2366. with the same names that the files currently have." t nil)
  2367.  
  2368. (autoload (quote dired-do-hardlink) "dired-aux" "\
  2369. Add names (hard links) current file or all marked (or next ARG) files.
  2370. When operating on just the current file, you specify the new name.
  2371. When operating on multiple or marked files, you specify a directory
  2372. and new hard links are made in that directory
  2373. with the same names that the files currently have." t nil)
  2374.  
  2375. (autoload (quote dired-do-rename) "dired-aux" "\
  2376. Rename current file or all marked (or next ARG) files.
  2377. When renaming just the current file, you specify the new name.
  2378. When renaming multiple or marked files, you specify a directory." t nil)
  2379.  
  2380. (autoload (quote dired-do-rename-regexp) "dired-aux" "\
  2381. Rename marked files containing REGEXP to NEWNAME.
  2382. As each match is found, the user must type a character saying
  2383.   what to do with it.  For directions, type \\[help-command] at that time.
  2384. NEWNAME may contain \\=\\<n> or \\& as in `query-replace-regexp'.
  2385. REGEXP defaults to the last regexp used.
  2386. With a zero prefix arg, renaming by regexp affects the complete
  2387.   pathname - usually only the non-directory part of file names is used
  2388.   and changed." t nil)
  2389.  
  2390. (autoload (quote dired-do-copy-regexp) "dired-aux" "\
  2391. Copy all marked files containing REGEXP to NEWNAME.
  2392. See function `dired-rename-regexp' for more info." t nil)
  2393.  
  2394. (autoload (quote dired-do-hardlink-regexp) "dired-aux" "\
  2395. Hardlink all marked files containing REGEXP to NEWNAME.
  2396. See function `dired-rename-regexp' for more info." t nil)
  2397.  
  2398. (autoload (quote dired-do-symlink-regexp) "dired-aux" "\
  2399. Symlink all marked files containing REGEXP to NEWNAME.
  2400. See function `dired-rename-regexp' for more info." t nil)
  2401.  
  2402. (autoload (quote dired-upcase) "dired-aux" "\
  2403. Rename all marked (or next ARG) files to upper case." t nil)
  2404.  
  2405. (autoload (quote dired-downcase) "dired-aux" "\
  2406. Rename all marked (or next ARG) files to lower case." t nil)
  2407.  
  2408. (autoload (quote dired-maybe-insert-subdir) "dired-aux" "\
  2409. Insert this subdirectory into the same dired buffer.
  2410. If it is already present, just move to it (type \\[dired-do-redisplay] to refresh),
  2411.   else inserts it at its natural place (as `ls -lR' would have done).
  2412. With a prefix arg, you may edit the ls switches used for this listing.
  2413.   You can add `R' to the switches to expand the whole tree starting at
  2414.   this subdirectory.
  2415. This function takes some pains to conform to `ls -lR' output." t nil)
  2416.  
  2417. (autoload (quote dired-prev-subdir) "dired-aux" "\
  2418. Go to previous subdirectory, regardless of level.
  2419. When called interactively and not on a subdir line, go to this subdir's line." t nil)
  2420.  
  2421. (autoload (quote dired-goto-subdir) "dired-aux" "\
  2422. Go to end of header line of DIR in this dired buffer.
  2423. Return value of point on success, otherwise return nil.
  2424. The next char is either \\n, or \\r if DIR is hidden." t nil)
  2425.  
  2426. (autoload (quote dired-mark-subdir-files) "dired-aux" "\
  2427. Mark all files except `.' and `..'." t nil)
  2428.  
  2429. (autoload (quote dired-kill-subdir) "dired-aux" "\
  2430. Remove all lines of current subdirectory.
  2431. Lower levels are unaffected." t nil)
  2432.  
  2433. (autoload (quote dired-tree-up) "dired-aux" "\
  2434. Go up ARG levels in the dired tree." t nil)
  2435.  
  2436. (autoload (quote dired-tree-down) "dired-aux" "\
  2437. Go down in the dired tree." t nil)
  2438.  
  2439. (autoload (quote dired-hide-subdir) "dired-aux" "\
  2440. Hide or unhide the current subdirectory and move to next directory.
  2441. Optional prefix arg is a repeat factor.
  2442. Use \\[dired-hide-all] to (un)hide all directories." t nil)
  2443.  
  2444. (autoload (quote dired-hide-all) "dired-aux" "\
  2445. Hide all subdirectories, leaving only their header lines.
  2446. If there is already something hidden, make everything visible again.
  2447. Use \\[dired-hide-subdir] to (un)hide a particular subdirectory." t nil)
  2448.  
  2449. ;;;***
  2450.  
  2451. ;;;### (autoloads (dired-jump) "dired-x" "dired-x.el" (11749 38205))
  2452. ;;; Generated autoloads from dired-x.el
  2453.  
  2454. (autoload (quote dired-jump) "dired-x" "\
  2455. Jump to dired buffer corresponding to current buffer.
  2456. If in a file, dired the current directory and move to file's line.
  2457. If in dired already, pop up a level and goto old directory's line.
  2458. In case the proper dired file line cannot be found, refresh the dired
  2459. buffer and try again." t nil)
  2460.  
  2461. ;;;***
  2462.  
  2463. ;;;### (autoloads (disassemble) "disass" "disass.el" (11426 2298))
  2464. ;;; Generated autoloads from disass.el
  2465.  
  2466. (autoload (quote disassemble) "disass" "\
  2467. Print disassembled code for OBJECT in (optional) BUFFER.
  2468. OBJECT can be a symbol defined as a function, or a function itself
  2469. \(a lambda expression or a compiled-function object).
  2470. If OBJECT is not already compiled, we compile it, but do not
  2471. redefine OBJECT if it is a symbol." t nil)
  2472.  
  2473. ;;;***
  2474.  
  2475. ;;;### (autoloads (standard-display-european create-glyph standard-display-underline standard-display-graphic standard-display-g1 standard-display-ascii standard-display-default standard-display-8bit make-display-table describe-current-display-table) "disp-table" "disp-table.el" (11658 30230))
  2476. ;;; Generated autoloads from disp-table.el
  2477.  
  2478. (autoload (quote describe-current-display-table) "disp-table" "\
  2479. Describe the display table in use in the selected window and buffer." t nil)
  2480.  
  2481. (autoload (quote make-display-table) "disp-table" "\
  2482. Return a new, empty display table." nil nil)
  2483.  
  2484. (autoload (quote standard-display-8bit) "disp-table" "\
  2485. Display characters in the range L to H literally." nil nil)
  2486.  
  2487. (autoload (quote standard-display-default) "disp-table" "\
  2488. Display characters in the range L to H using the default notation." nil nil)
  2489.  
  2490. (autoload (quote standard-display-ascii) "disp-table" "\
  2491. Display character C using string S.
  2492. S is usually a terminal-dependent escape sequence.
  2493. This function is meaningless for an X frame." nil nil)
  2494.  
  2495. (autoload (quote standard-display-g1) "disp-table" "\
  2496. Display character C as character SC in the g1 character set.
  2497. This function assumes that your terminal uses the SO/SI characters;
  2498. it is meaningless for an X frame." nil nil)
  2499.  
  2500. (autoload (quote standard-display-graphic) "disp-table" "\
  2501. Display character C as character GC in graphics character set.
  2502. This function assumes VT100-compatible escapes; it is meaningless for an
  2503. X frame." nil nil)
  2504.  
  2505. (autoload (quote standard-display-underline) "disp-table" "\
  2506. Display character C as character UC plus underlining." nil nil)
  2507.  
  2508. (autoload (quote create-glyph) "disp-table" nil nil nil)
  2509.  
  2510. (autoload (quote standard-display-european) "disp-table" "\
  2511. Toggle display of European characters encoded with ISO 8859.
  2512. When enabled, characters in the range of 160 to 255 display not
  2513. as octal escapes, but as accented characters.
  2514. With prefix argument, enable European character display iff arg is positive." t nil)
  2515.  
  2516. ;;;***
  2517.  
  2518. ;;;### (autoloads (dissociated-press) "dissociate" "dissociate.el" (11356 11391))
  2519. ;;; Generated autoloads from dissociate.el
  2520.  
  2521. (autoload (quote dissociated-press) "dissociate" "\
  2522. Dissociate the text of the current buffer.
  2523. Output goes in buffer named *Dissociation*,
  2524. which is redisplayed each time text is added to it.
  2525. Every so often the user must say whether to continue.
  2526. If ARG is positive, require ARG chars of continuity.
  2527. If ARG is negative, require -ARG words of continuity.
  2528. Default is 2." t nil)
  2529.  
  2530. ;;;***
  2531.  
  2532. ;;;### (autoloads (doctor) "doctor" "doctor.el" (11545 4614))
  2533. ;;; Generated autoloads from doctor.el
  2534.  
  2535. (autoload (quote doctor) "doctor" "\
  2536. Switch to *doctor* buffer and start giving psychotherapy." t nil)
  2537.  
  2538. ;;;***
  2539.  
  2540. ;;;### (autoloads (double-mode) "double" "double.el" (11717 17892))
  2541. ;;; Generated autoloads from double.el
  2542.  
  2543. (autoload (quote double-mode) "double" "\
  2544. Toggle double mode.
  2545. With prefix arg, turn double mode on iff arg is positive.
  2546.  
  2547. When double mode is on, some keys will insert will insert different
  2548. strings when pressed twice.  See variable `double-map' for details." t nil)
  2549.  
  2550. ;;;***
  2551.  
  2552. ;;;### (autoloads (dunnet) "dunnet" "dunnet.el" (11404 48775))
  2553. ;;; Generated autoloads from dunnet.el
  2554.  
  2555. (autoload (quote dunnet) "dunnet" "\
  2556. Switch to *dungeon* buffer and start game." t nil)
  2557.  
  2558. ;;;***
  2559.  
  2560. ;;;### (autoloads (easy-menu-define) "easymenu" "easymenu.el" (11689 38195))
  2561. ;;; Generated autoloads from easymenu.el
  2562.  
  2563. (autoload (quote easy-menu-define) "easymenu" "\
  2564. Define a menu bar submenu in maps MAPS, according to MENU.
  2565. The arguments SYMBOL and DOC are ignored; they are present for
  2566. compatibility only.  SYMBOL is not evaluated.  In other Emacs versions
  2567. these arguments may be used as a variable to hold the menu data, and a
  2568. doc string for that variable.
  2569.  
  2570. The first element of MENU must be a string.  It is the menu bar item name.
  2571. The rest of the elements are menu items.
  2572.  
  2573. A menu item is usually a vector of three elements:  [NAME CALLBACK ENABLE]
  2574.  
  2575. NAME is a string--the menu item name.
  2576.  
  2577. CALLBACK is a command to run when the item is chosen,
  2578. or a list to evaluate when the item is chosen.
  2579.  
  2580. ENABLE is a symbol; if its value is non-nil, the item is enabled
  2581. for selection.
  2582.  
  2583. A menu item can be a string.  Then that string appears in the menu as
  2584. unselectable text.  A string consisting solely of hyphens is displayed
  2585. as a solid horizontal line.
  2586.  
  2587. A menu item can be a list.  It is treated as a submenu.
  2588. The first element should be the submenu name.  That's used as the
  2589. menu item in the top-level menu.  The cdr of the submenu list
  2590. is a list of menu items, as above." nil (quote macro))
  2591.  
  2592. ;;;***
  2593.  
  2594. ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el" (11702 36748))
  2595. ;;; Generated autoloads from ebuff-menu.el
  2596.  
  2597. (autoload (quote electric-buffer-list) "ebuff-menu" "\
  2598. Pops up a buffer describing the set of Emacs buffers.
  2599. Vaguely like ITS lunar select buffer; combining typeoutoid buffer
  2600. listing with menuoid buffer selection.
  2601.  
  2602. If the very next character typed is a space then the buffer list
  2603. window disappears.  Otherwise, one may move around in the buffer list
  2604. window, marking buffers to be selected, saved or deleted.
  2605.  
  2606. To exit and select a new buffer, type a space when the cursor is on
  2607. the appropriate line of the buffer-list window.  Other commands are
  2608. much like those of buffer-menu-mode.
  2609.  
  2610. Calls value of `electric-buffer-menu-mode-hook' on entry if non-nil.
  2611.  
  2612. \\{electric-buffer-menu-mode-map}" t nil)
  2613.  
  2614. ;;;***
  2615.  
  2616. ;;;### (autoloads (Electric-command-history-redo-expression) "echistory" "echistory.el" (11288 43486))
  2617. ;;; Generated autoloads from echistory.el
  2618.  
  2619. (autoload (quote Electric-command-history-redo-expression) "echistory" "\
  2620. Edit current history line in minibuffer and execute result.
  2621. With prefix arg NOCONFIRM, execute current line as-is without editing." t nil)
  2622.  
  2623. ;;;***
  2624.  
  2625. ;;;### (autoloads (edebug-eval-top-level-form def-edebug-spec) "edebug" "edebug.el" (11689 51386))
  2626. ;;; Generated autoloads from edebug.el
  2627.  
  2628. (autoload (quote def-edebug-spec) "edebug" "\
  2629. Set the edebug-form-spec property of SYMBOL according to SPEC.
  2630. Both SYMBOL and SPEC are unevaluated. The SPEC can be 0, t, a symbol
  2631. \(naming a function), or a list." nil (quote macro))
  2632.  
  2633. (defalias (quote edebug-defun) (quote edebug-eval-top-level-form))
  2634.  
  2635. (autoload (quote edebug-eval-top-level-form) "edebug" "\
  2636. Evaluate a top level form, such as a defun or defmacro.
  2637. This is like `eval-defun', but the code is always instrumented for Edebug.
  2638. Print its name in the minibuffer and leave point where it is,
  2639. or if an error occurs, leave point after it with mark at the original
  2640. point." t nil)
  2641.  
  2642. ;;;***
  2643.  
  2644. ;;;### (autoloads (rcs-ediff vc-ediff ediff-patch-buffer ediff-buffers ediff-files ediff-patch-file) "ediff" "ediff.el" (11848 20075))
  2645. ;;; Generated autoloads from ediff.el
  2646.  
  2647. (if purify-flag (progn (defvar menu-bar-epatch-menu (make-sparse-keymap "Epatch")) (fset (quote menu-bar-epatch-menu) (symbol-value (quote menu-bar-epatch-menu))) (defvar menu-bar-ediff-menu (make-sparse-keymap "Ediff")) (fset (quote menu-bar-ediff-menu) (symbol-value (quote menu-bar-ediff-menu)))))
  2648.  
  2649. (if purify-flag (progn (define-key menu-bar-ediff-menu [rcs-ediff] (quote ("File with a version via RCS ..." . rcs-ediff))) (define-key menu-bar-ediff-menu [vc-ediff] (quote ("File with a version via VC ..." . vc-ediff))) (define-key menu-bar-ediff-menu [ediff-buffers] (quote ("Buffers ..." . ediff-buffers))) (define-key menu-bar-ediff-menu [ediff-files] (quote ("Files ..." . ediff-files)))))
  2650.  
  2651. (if purify-flag (progn (define-key menu-bar-epatch-menu [ediff-patch-buffer] (quote ("To a Buffer ..." . ediff-patch-buffer))) (define-key menu-bar-epatch-menu [ediff-patch-file] (quote ("To a File ..." . ediff-patch-file)))))
  2652.  
  2653. (autoload (quote ediff-patch-file) "ediff" "\
  2654. Run Ediff by patching FILE-TP-PATCH." t nil)
  2655.  
  2656. (autoload (quote ediff-files) "ediff" "\
  2657. Run Ediff on a pair files, FILE-A and FILE-B." t nil)
  2658.  
  2659. (autoload (quote ediff-buffers) "ediff" "\
  2660. Run Ediff on a pair of buffers, BUFFER-A and BUFFER-B." t nil)
  2661.  
  2662. (autoload (quote ediff-patch-buffer) "ediff" "\
  2663. Run Ediff by patching BUFFER-NAME." t nil)
  2664.  
  2665. (autoload (quote vc-ediff) "ediff" "\
  2666. Run ediff on version REV of the current buffer in another window.
  2667. If the current buffer is named `F', the version is named `F.~REV~'.
  2668. If `F.~REV~' already exists, it is used instead of being re-created." t nil)
  2669.  
  2670. (autoload (quote rcs-ediff) "ediff" "\
  2671. Run Ediff on the current buffer, comparing it with previous RCS revision.  
  2672. With prefix argument, prompts for revision name." t nil)
  2673.  
  2674. ;;;***
  2675.  
  2676. ;;;### (autoloads (insert-kbd-macro format-kbd-macro read-kbd-macro edit-named-kbd-macro edit-last-kbd-macro edit-kbd-macro) "edmacro" "edmacro.el" (11601 61057))
  2677. ;;; Generated autoloads from edmacro.el
  2678. (define-key ctl-x-map "\C-k" 'edit-kbd-macro)
  2679.  
  2680. (defvar edmacro-eight-bits nil "\
  2681. *Non-nil if edit-kbd-macro should leave 8-bit characters intact.
  2682. Default nil means to write characters above \\177 in octal notation.")
  2683.  
  2684. (autoload (quote edit-kbd-macro) "edmacro" "\
  2685. Edit a keyboard macro.
  2686. At the prompt, type any key sequence which is bound to a keyboard macro.
  2687. Or, type `C-x e' or RET to edit the last keyboard macro, `C-h l' to edit
  2688. the last 100 keystrokes as a keyboard macro, or `M-x' to edit a macro by
  2689. its command name.
  2690. With a prefix argument, format the macro in a more concise way." t nil)
  2691.  
  2692. (autoload (quote edit-last-kbd-macro) "edmacro" "\
  2693. Edit the most recently defined keyboard macro." t nil)
  2694.  
  2695. (autoload (quote edit-named-kbd-macro) "edmacro" "\
  2696. Edit a keyboard macro which has been given a name by `name-last-kbd-macro'." t nil)
  2697.  
  2698. (autoload (quote read-kbd-macro) "edmacro" "\
  2699. Read the region as a keyboard macro definition.
  2700. The region is interpreted as spelled-out keystrokes, e.g., \"M-x abc RET\".
  2701. See documentation for `edmacro-mode' for details.
  2702. Leading/trailing \"C-x (\" and \"C-x )\" in the text are allowed and ignored.
  2703. The resulting macro is installed as the \"current\" keyboard macro.
  2704.  
  2705. In Lisp, may also be called with a single STRING argument in which case
  2706. the result is returned rather than being installed as the current macro.
  2707. The result will be a string if possible, otherwise an event vector.
  2708. Second argument NEED-VECTOR means to return an event vector always." t nil)
  2709.  
  2710. (autoload (quote format-kbd-macro) "edmacro" "\
  2711. Return the keyboard macro MACRO as a human-readable string.
  2712. This string is suitable for passing to `read-kbd-macro'.
  2713. Second argument VERBOSE means to put one command per line with comments.
  2714. If VERBOSE is `1', put everything on one line.  If VERBOSE is omitted
  2715. or nil, use a compact 80-column format." nil nil)
  2716.  
  2717. (autoload (quote insert-kbd-macro) "edmacro" "\
  2718. Insert in buffer the definition of kbd macro NAME, as Lisp code.
  2719. Optional second arg KEYS means also record the keys it is on
  2720. \(this is the prefix argument, when calling interactively).
  2721.  
  2722. This Lisp code will, when executed, define the kbd macro with the same
  2723. definition it has now.  If you say to record the keys, the Lisp code
  2724. will also rebind those keys to the macro.  Only global key bindings
  2725. are recorded since executing this Lisp code always makes global
  2726. bindings.
  2727.  
  2728. To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
  2729. use this command, and then save the file." t nil)
  2730.  
  2731. ;;;***
  2732.  
  2733. ;;;### (autoloads (edt-emulation-on) "edt" "edt.el" (11691 14811))
  2734. ;;; Generated autoloads from edt.el
  2735.  
  2736. (autoload (quote edt-emulation-on) "edt" "\
  2737. Emulate DEC's EDT editor.
  2738. Note that many keys are rebound; including nearly all keypad keys.
  2739. Use \\[edt-emulation-off] to undo all rebindings except the keypad keys." t nil)
  2740.  
  2741. ;;;***
  2742.  
  2743. ;;;### (autoloads (report-emacs-bug) "emacsbug" "emacsbug.el" (11700 29541))
  2744. ;;; Generated autoloads from emacsbug.el
  2745.  
  2746. (autoload (quote report-emacs-bug) "emacsbug" "\
  2747. Report a bug in GNU Emacs.
  2748. Prompts for bug subject.  Leaves you in a mail buffer." t nil)
  2749.  
  2750. ;;;***
  2751.  
  2752. ;;;### (autoloads (emerge-merge-directories emerge-revisions-with-ancestor emerge-revisions emerge-files-with-ancestor-remote emerge-files-remote emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor emerge-buffers emerge-files-with-ancestor emerge-files) "emerge" "emerge.el" (11695 20057))
  2753. ;;; Generated autoloads from emerge.el
  2754.  
  2755. (defvar menu-bar-emerge-menu (make-sparse-keymap "Emerge"))
  2756.  
  2757. (fset (quote menu-bar-emerge-menu) (symbol-value (quote menu-bar-emerge-menu)))
  2758.  
  2759. (define-key menu-bar-emerge-menu [emerge-merge-directories] (quote ("Merge Directories ..." . emerge-merge-directories)))
  2760.  
  2761. (define-key menu-bar-emerge-menu [emerge-revisions-with-ancestor] (quote ("Revisions with Ancestor ..." . emerge-revisions-with-ancestor)))
  2762.  
  2763. (define-key menu-bar-emerge-menu [emerge-revisions] (quote ("Revisions ..." . emerge-revisions)))
  2764.  
  2765. (define-key menu-bar-emerge-menu [emerge-files-with-ancestor] (quote ("Files with Ancestor ..." . emerge-files-with-ancestor)))
  2766.  
  2767. (define-key menu-bar-emerge-menu [emerge-files] (quote ("Files ..." . emerge-files)))
  2768.  
  2769. (define-key menu-bar-emerge-menu [emerge-buffers-with-ancestor] (quote ("Buffers with Ancestor ..." . emerge-buffers-with-ancestor)))
  2770.  
  2771. (define-key menu-bar-emerge-menu [emerge-buffers] (quote ("Buffers ..." . emerge-buffers)))
  2772.  
  2773. (autoload (quote emerge-files) "emerge" "\
  2774. Run Emerge on two files." t nil)
  2775.  
  2776. (autoload (quote emerge-files-with-ancestor) "emerge" "\
  2777. Run Emerge on two files, giving another file as the ancestor." t nil)
  2778.  
  2779. (autoload (quote emerge-buffers) "emerge" "\
  2780. Run Emerge on two buffers." t nil)
  2781.  
  2782. (autoload (quote emerge-buffers-with-ancestor) "emerge" "\
  2783. Run Emerge on two buffers, giving another buffer as the ancestor." t nil)
  2784.  
  2785. (autoload (quote emerge-files-command) "emerge" nil nil nil)
  2786.  
  2787. (autoload (quote emerge-files-with-ancestor-command) "emerge" nil nil nil)
  2788.  
  2789. (autoload (quote emerge-files-remote) "emerge" nil nil nil)
  2790.  
  2791. (autoload (quote emerge-files-with-ancestor-remote) "emerge" nil nil nil)
  2792.  
  2793. (autoload (quote emerge-revisions) "emerge" "\
  2794. Emerge two RCS revisions of a file." t nil)
  2795.  
  2796. (autoload (quote emerge-revisions-with-ancestor) "emerge" "\
  2797. Emerge two RCS revisions of a file, with another revision as ancestor." t nil)
  2798.  
  2799. (autoload (quote emerge-merge-directories) "emerge" nil t nil)
  2800.  
  2801. ;;;***
  2802.  
  2803. ;;;### (autoloads (setenv) "env" "env.el" (11288 64005))
  2804. ;;; Generated autoloads from env.el
  2805.  
  2806. (autoload (quote setenv) "env" "\
  2807. Set the value of the environment variable named VARIABLE to VALUE.
  2808. VARIABLE should be a string.  VALUE is optional; if not provided or is
  2809. `nil', the environment variable VARIABLE will be removed.  
  2810. This function works by modifying `process-environment'." t nil)
  2811.  
  2812. ;;;***
  2813.  
  2814. ;;;### (autoloads (complete-tag select-tags-table tags-apropos list-tags tags-query-replace tags-search tags-loop-continue next-file find-tag-regexp find-tag-other-frame find-tag-other-window find-tag find-tag-noselect tags-table-files visit-tags-table) "etags" "etags.el" (11777 7940))
  2815. ;;; Generated autoloads from etags.el
  2816.  
  2817. (defvar tags-file-name nil "\
  2818. *File name of tags table.
  2819. To switch to a new tags table, setting this variable is sufficient.
  2820. If you set this variable, do not also set `tags-table-list'.
  2821. Use the `etags' program to make a tags table file.")
  2822. (put 'tags-file-name 'variable-interactive "fVisit tags table: ")
  2823.  
  2824. (defvar tags-table-list nil "\
  2825. *List of file names of tags tables to search.
  2826. An element that is a directory means the file \"TAGS\" in that directory.
  2827. To switch to a new list of tags tables, setting this variable is sufficient.
  2828. If you set this variable, do not also set `tags-file-name'.
  2829. Use the `etags' program to make a tags table file.")
  2830.  
  2831. (defvar tags-add-tables (quote ask-user) "\
  2832. *Control whether to add a new tags table to the current list.
  2833. t means do; nil means don't (always start a new list).
  2834. Any other value means ask the user whether to add a new tags table
  2835. to the current list (as opposed to starting a new list).")
  2836.  
  2837. (defvar find-tag-hook nil "\
  2838. *Hook to be run by \\[find-tag] after finding a tag.  See `run-hooks'.
  2839. The value in the buffer in which \\[find-tag] is done is used,
  2840. not the value in the buffer \\[find-tag] goes to.")
  2841.  
  2842. (defvar find-tag-default-function nil "\
  2843. *A function of no arguments used by \\[find-tag] to pick a default tag.
  2844. If nil, and the symbol that is the value of `major-mode'
  2845. has a `find-tag-default-function' property (see `put'), that is used.
  2846. Otherwise, `find-tag-default' is used.")
  2847.  
  2848. (autoload (quote visit-tags-table) "etags" "\
  2849. Tell tags commands to use tags table file FILE.
  2850. FILE should be the name of a file created with the `etags' program.
  2851. A directory name is ok too; it means file TAGS in that directory.
  2852.  
  2853. Normally \\[visit-tags-table] sets the global value of `tags-file-name'.
  2854. With a prefix arg, set the buffer-local value instead.
  2855. When you find a tag with \\[find-tag], the buffer it finds the tag
  2856. in is given a local value of this variable which is the name of the tags
  2857. file the tag was in." t nil)
  2858.  
  2859. (autoload (quote tags-table-files) "etags" "\
  2860. Return a list of files in the current tags table.
  2861. Assumes the tags table is the current buffer.
  2862. File names returned are absolute." nil nil)
  2863.  
  2864. (autoload (quote find-tag-noselect) "etags" "\
  2865. Find tag (in current tags table) whose name contains TAGNAME.
  2866. Returns the buffer containing the tag's definition and moves its point there,
  2867. but does not select the buffer.
  2868. The default for TAGNAME is the expression in the buffer near point.
  2869.  
  2870. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2871. another tag that matches the last tagname or regexp used.  When there are
  2872. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2873. is the atom `-' (interactively, with prefix arg that is a negative number
  2874. or just \\[negative-argument]), pop back to the previous tag gone to.
  2875.  
  2876. If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
  2877.  
  2878. See documentation of variable `tags-file-name'." t nil)
  2879.  
  2880. (autoload (quote find-tag) "etags" "\
  2881. Find tag (in current tags table) whose name contains TAGNAME.
  2882. Select the buffer containing the tag's definition, and move point there.
  2883. The default for TAGNAME is the expression in the buffer around or before point.
  2884.  
  2885. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2886. another tag that matches the last tagname or regexp used.  When there are
  2887. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2888. is the atom `-' (interactively, with prefix arg that is a negative number
  2889. or just \\[negative-argument]), pop back to the previous tag gone to.
  2890.  
  2891. See documentation of variable `tags-file-name'." t nil)
  2892. (define-key esc-map "." 'find-tag)
  2893.  
  2894. (autoload (quote find-tag-other-window) "etags" "\
  2895. Find tag (in current tags table) whose name contains TAGNAME.
  2896. Select the buffer containing the tag's definition in another window, and
  2897. move point there.  The default for TAGNAME is the expression in the buffer
  2898. around or before point.
  2899.  
  2900. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2901. another tag that matches the last tagname or regexp used.  When there are
  2902. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2903. is negative (interactively, with prefix arg that is a negative number or
  2904. just \\[negative-argument]), pop back to the previous tag gone to.
  2905.  
  2906. See documentation of variable `tags-file-name'." t nil)
  2907. (define-key ctl-x-4-map "." 'find-tag-other-window)
  2908.  
  2909. (autoload (quote find-tag-other-frame) "etags" "\
  2910. Find tag (in current tags table) whose name contains TAGNAME.
  2911. Select the buffer containing the tag's definition in another frame, and
  2912. move point there.  The default for TAGNAME is the expression in the buffer
  2913. around or before point.
  2914.  
  2915. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2916. another tag that matches the last tagname or regexp used.  When there are
  2917. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2918. is negative (interactively, with prefix arg that is a negative number or
  2919. just \\[negative-argument]), pop back to the previous tag gone to.
  2920.  
  2921. See documentation of variable `tags-file-name'." t nil)
  2922. (define-key ctl-x-5-map "." 'find-tag-other-frame)
  2923.  
  2924. (autoload (quote find-tag-regexp) "etags" "\
  2925. Find tag (in current tags table) whose name matches REGEXP.
  2926. Select the buffer containing the tag's definition and move point there.
  2927.  
  2928. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2929. another tag that matches the last tagname or regexp used.  When there are
  2930. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2931. is negative (interactively, with prefix arg that is a negative number or
  2932. just \\[negative-argument]), pop back to the previous tag gone to.
  2933.  
  2934. If third arg OTHER-WINDOW is non-nil, select the buffer in another window.
  2935.  
  2936. See documentation of variable `tags-file-name'." t nil)
  2937.  
  2938. (autoload (quote next-file) "etags" "\
  2939. Select next file among files in current tags table.
  2940.  
  2941. A first argument of t (prefix arg, if interactive) initializes to the
  2942. beginning of the list of files in the tags table.  If the argument is
  2943. neither nil nor t, it is evalled to initialize the list of files.
  2944.  
  2945. Non-nil second argument NOVISIT means use a temporary buffer
  2946.  to save time and avoid uninteresting warnings.
  2947.  
  2948. Value is nil if the file was already visited;
  2949. if the file was newly read in, the value is the filename." t nil)
  2950.  
  2951. (autoload (quote tags-loop-continue) "etags" "\
  2952. Continue last \\[tags-search] or \\[tags-query-replace] command.
  2953. Used noninteractively with non-nil argument to begin such a command (the
  2954. argument is passed to `next-file', which see).
  2955. Two variables control the processing we do on each file:
  2956. the value of `tags-loop-scan' is a form to be executed on each file
  2957. to see if it is interesting (it returns non-nil if so)
  2958. and `tags-loop-operate' is a form to execute to operate on an interesting file
  2959. If the latter returns non-nil, we exit; otherwise we scan the next file." t nil)
  2960. (define-key esc-map "," 'tags-loop-continue)
  2961.  
  2962. (autoload (quote tags-search) "etags" "\
  2963. Search through all files listed in tags table for match for REGEXP.
  2964. Stops when a match is found.
  2965. To continue searching for next match, use command \\[tags-loop-continue].
  2966.  
  2967. See documentation of variable `tags-file-name'." t nil)
  2968.  
  2969. (autoload (quote tags-query-replace) "etags" "\
  2970. Query-replace-regexp FROM with TO through all files listed in tags table.
  2971. Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
  2972. If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace
  2973. with the command \\[tags-loop-continue].
  2974.  
  2975. See documentation of variable `tags-file-name'." t nil)
  2976.  
  2977. (autoload (quote list-tags) "etags" "\
  2978. Display list of tags in file FILE.
  2979. FILE should not contain a directory specification." t nil)
  2980.  
  2981. (autoload (quote tags-apropos) "etags" "\
  2982. Display list of all tags in tags table REGEXP matches." t nil)
  2983.  
  2984. (autoload (quote select-tags-table) "etags" "\
  2985. Select a tags table file from a menu of those you have already used.
  2986. The list of tags tables to select from is stored in `tags-table-file-list';
  2987. see the doc of that variable if you want to add names to the list." t nil)
  2988.  
  2989. (autoload (quote complete-tag) "etags" "\
  2990. Perform tags completion on the text around point.
  2991. Completes to the set of names listed in the current tags table.  
  2992. The string to complete is chosen in the same way as the default
  2993. for \\[find-tag] (which see)." t nil)
  2994. (define-key esc-map "\t" 'complete-tag)
  2995.  
  2996. ;;;***
  2997.  
  2998. ;;;### (autoloads (find-grep-dired find-name-dired find-dired) "find-dired" "find-dired.el" (11706 10941))
  2999. ;;; Generated autoloads from find-dired.el
  3000.  
  3001. (defvar find-ls-option (if (eq system-type (quote berkeley-unix)) "-ls" "-exec ls -ldi {} \\;") "\
  3002. *Option to `find' to produce an `ls -l'-type listing.")
  3003.  
  3004. (defvar find-grep-options (if (eq system-type (quote berkeley-unix)) "-s" "-l") "\
  3005. *Option to grep to be as silent as possible.
  3006. On Berkeley systems, this is `-s', for others it seems impossible to
  3007. suppress all output, so `-l' is used to print nothing more than the
  3008. file name.")
  3009.  
  3010. (autoload (quote find-dired) "find-dired" "\
  3011. Run `find' and go into dired-mode on a buffer of the output.
  3012. The command run (after changing into DIR) is
  3013.  
  3014.     find . \\( ARGS \\) -ls" t nil)
  3015.  
  3016. (autoload (quote find-name-dired) "find-dired" "\
  3017. Search DIR recursively for files matching the globbing pattern PATTERN,
  3018. and run dired on those files.
  3019. PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted.
  3020. The command run (after changing into DIR) is
  3021.  
  3022.     find . -name 'PATTERN' -ls" t nil)
  3023.  
  3024. (autoload (quote find-grep-dired) "find-dired" "\
  3025. Find files in DIR containing a regexp ARG and start Dired on output.
  3026. The command run (after changing into DIR) is
  3027.  
  3028.     find . -exec grep -s ARG {} \\; -ls
  3029.  
  3030. Thus ARG can also contain additional grep options." t nil)
  3031.  
  3032. ;;;***
  3033.  
  3034. ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" "flow-ctrl.el" (11684 27427))
  3035. ;;; Generated autoloads from flow-ctrl.el
  3036.  
  3037. (autoload (quote enable-flow-control) "flow-ctrl" "\
  3038. Toggle flow control handling.
  3039. When handling is enabled, user can type C-s as C-\\, and C-q as C-^.
  3040. With arg, enable flow control mode if arg is positive, otherwise disable." t nil)
  3041.  
  3042. (autoload (quote enable-flow-control-on) "flow-ctrl" "\
  3043. Enable flow control if using one of a specified set of terminal types.
  3044. Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control
  3045. on VT-100 and H19 terminals.  When flow control is enabled,
  3046. you must type C-\\ to get the effect of a C-s, and type C-^
  3047. to get the effect of a C-q." nil nil)
  3048.  
  3049. ;;;***
  3050.  
  3051. ;;;### (autoloads (font-lock-mode) "font-lock" "font-lock.el" (11703 32011))
  3052. ;;; Generated autoloads from font-lock.el
  3053.  
  3054. (defvar font-lock-mode-hook nil "\
  3055. Function or functions to run on entry to Font Lock mode.")
  3056.  
  3057. (autoload (quote font-lock-mode) "font-lock" "\
  3058. Toggle Font Lock mode.
  3059. With arg, turn Font Lock mode on if and only if arg is positive.
  3060.  
  3061. When Font Lock mode is enabled, text is fontified as you type it:
  3062.  
  3063.  - comments are displayed in `font-lock-comment-face';
  3064.      (That is a variable whose value should be a face name.)
  3065.  - strings are displayed in `font-lock-string-face';
  3066.  - documentation strings are displayed in `font-lock-doc-string-face';
  3067.  - function and variable names in their defining forms are displayed
  3068.    in `font-lock-function-name-face';
  3069.  - and certain other expressions are displayed in other faces
  3070.    according to the value of the variable `font-lock-keywords'.
  3071.  
  3072. When you turn Font Lock mode on/off, the buffer is fontified/defontified.
  3073. To fontify a buffer without having newly typed text become fontified, you
  3074. can use \\[font-lock-fontify-buffer]." t nil)
  3075.  
  3076. ;;;***
  3077.  
  3078. ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) "forms" "forms.el" (11671 25743))
  3079. ;;; Generated autoloads from forms.el
  3080.  
  3081. (autoload (quote forms-mode) "forms" "\
  3082. Major mode to visit files in a field-structured manner using a form.
  3083.  
  3084. Commands:                        Equivalent keys in read-only mode:
  3085.  TAB            forms-next-field          TAB
  3086.  \\C-c TAB       forms-next-field          
  3087.  \\C-c <         forms-first-record         <
  3088.  \\C-c >         forms-last-record          >
  3089.  \\C-c ?         describe-mode              ?
  3090.  \\C-c \\C-k      forms-delete-record
  3091.  \\C-c \\C-q      forms-toggle-read-only     q
  3092.  \\C-c \\C-o      forms-insert-record
  3093.  \\C-c \\C-l      forms-jump-record          l
  3094.  \\C-c \\C-n      forms-next-record          n
  3095.  \\C-c \\C-p      forms-prev-record          p
  3096.  \\C-c \\C-s      forms-search               s
  3097.  \\C-c \\C-x      forms-exit                 x
  3098. " t nil)
  3099.  
  3100. (autoload (quote forms-find-file) "forms" "\
  3101. Visit a file in Forms mode." t nil)
  3102.  
  3103. (autoload (quote forms-find-file-other-window) "forms" "\
  3104. Visit a file in Forms mode in other window." t nil)
  3105.  
  3106. ;;;***
  3107.  
  3108. ;;;### (autoloads (fortran-mode) "fortran" "fortran.el" (11680 29892))
  3109. ;;; Generated autoloads from fortran.el
  3110.  
  3111. (defvar fortran-tab-mode-default nil "\
  3112. *Default tabbing/carriage control style for empty files in Fortran mode.
  3113. A value of t specifies tab-digit style of continuation control.
  3114. A value of nil specifies that continuation lines are marked
  3115. with a character in column 6.")
  3116.  
  3117. (autoload (quote fortran-mode) "fortran" "\
  3118. Major mode for editing Fortran code.
  3119. \\[fortran-indent-line] indents the current Fortran line correctly. 
  3120. DO statements must not share a common CONTINUE.
  3121.  
  3122. Type ;? or ;\\[help-command] to display a list of built-in abbrevs for Fortran keywords.
  3123.  
  3124. Key definitions:
  3125. \\{fortran-mode-map}
  3126.  
  3127. Variables controlling indentation style and extra features:
  3128.  
  3129.  comment-start
  3130.     Normally nil in Fortran mode.  If you want to use comments
  3131.     starting with `!', set this to the string \"!\".
  3132.  fortran-do-indent
  3133.     Extra indentation within do blocks.  (default 3)
  3134.  fortran-if-indent
  3135.     Extra indentation within if blocks.  (default 3)
  3136.  fortran-structure-indent
  3137.     Extra indentation within structure, union, map and interface blocks.
  3138.     (default 3)
  3139.  fortran-continuation-indent
  3140.     Extra indentation applied to continuation statements.  (default 5)
  3141.  fortran-comment-line-extra-indent
  3142.     Amount of extra indentation for text within full-line comments. (default 0)
  3143.  fortran-comment-indent-style
  3144.     nil    means don't change indentation of text in full-line comments,
  3145.     fixed  means indent that text at `fortran-comment-line-extra-indent' beyond
  3146.            the value of `fortran-minimum-statement-indent-fixed' (for fixed
  3147.            format continuation style) or `fortran-minimum-statement-indent-tab'
  3148.            (for TAB format continuation style).
  3149.     relative  means indent at `fortran-comment-line-extra-indent' beyond the
  3150.            indentation for a line of code.
  3151.     (default 'fixed)
  3152.  fortran-comment-indent-char
  3153.     Single-character string to be inserted instead of space for
  3154.     full-line comment indentation.  (default \" \")
  3155.  fortran-minimum-statement-indent-fixed
  3156.     Minimum indentation for Fortran statements in fixed format mode. (def.6)
  3157.  fortran-minimum-statement-indent-tab
  3158.     Minimum indentation for Fortran statements in TAB format mode. (default 9)
  3159.  fortran-line-number-indent
  3160.     Maximum indentation for line numbers.  A line number will get
  3161.     less than this much indentation if necessary to avoid reaching
  3162.     column 5.  (default 1)
  3163.  fortran-check-all-num-for-matching-do
  3164.     Non-nil causes all numbered lines to be treated as possible \"continue\"
  3165.     statements.  (default nil)
  3166.  fortran-blink-matching-if 
  3167.     From a Fortran ENDIF statement, blink the matching IF statement.
  3168.     Also, from an ENDDO statement, blink on matching DO [WHILE] statement.
  3169.     (default nil)
  3170.  fortran-continuation-string
  3171.     Single-character string to be inserted in column 5 of a continuation
  3172.     line.  (default \"$\")
  3173.  fortran-comment-region
  3174.     String inserted by \\[fortran-comment-region] at start of each line in 
  3175.     region.  (default \"c$$$\")
  3176.  fortran-electric-line-number
  3177.     Non-nil causes line number digits to be moved to the correct column 
  3178.     as typed.  (default t)
  3179.  fortran-break-before-delimiters
  3180.     Non-nil causes `fortran-do-auto-fill' breaks lines before delimiters.
  3181.     (default t)
  3182.  fortran-startup-message
  3183.     Set to nil to inhibit message first time Fortran mode is used.
  3184.  
  3185. Turning on Fortran mode calls the value of the variable `fortran-mode-hook'
  3186. with no args, if that value is non-nil." t nil)
  3187.  
  3188. ;;;***
  3189.  
  3190. ;;;### (autoloads (gnus) "gnus" "gnus.el" (11714 48222))
  3191. ;;; Generated autoloads from gnus.el
  3192.  
  3193. (autoload (quote gnus) "gnus" "\
  3194. Read network news.
  3195. If optional argument CONFIRM is non-nil, ask NNTP server." t nil)
  3196.  
  3197. ;;;***
  3198.  
  3199. ;;;### (autoloads (gnus-post-news) "gnuspost" "gnuspost.el" (11611 65211))
  3200. ;;; Generated autoloads from gnuspost.el
  3201.  
  3202. (fset (quote sendnews) (quote gnus-post-news))
  3203.  
  3204. (fset (quote postnews) (quote gnus-post-news))
  3205.  
  3206. (autoload (quote gnus-post-news) "gnuspost" "\
  3207. Begin editing a new USENET news article to be posted.
  3208. Type \\[describe-mode] once editing the article to get a list of commands." t nil)
  3209.  
  3210. ;;;***
  3211.  
  3212. ;;;### (autoloads (gomoku) "gomoku" "gomoku.el" (11605 55848))
  3213. ;;; Generated autoloads from gomoku.el
  3214.  
  3215. (autoload (quote gomoku) "gomoku" "\
  3216. Start a Gomoku game between you and Emacs.
  3217. If a game is in progress, this command allow you to resume it.
  3218. If optional arguments N and M are given, an N by M board is used.
  3219.  
  3220. You and Emacs play in turn by marking a free square.  You mark it with X
  3221. and Emacs marks it with O. The winner is the first to get five contiguous
  3222. marks horizontally, vertically or in diagonal.
  3223.  
  3224. You play by moving the cursor over the square you choose and hitting
  3225. \\<gomoku-mode-map>\\[gomoku-human-plays].
  3226. Use \\[describe-mode] for more info." t nil)
  3227.  
  3228. ;;;***
  3229.  
  3230. ;;;### (autoloads (perldb xdb dbx sdb gdb) "gud" "gud.el" (11711 26140))
  3231. ;;; Generated autoloads from gud.el
  3232.  
  3233. (autoload (quote gdb) "gud" "\
  3234. Run gdb on program FILE in buffer *gud-FILE*.
  3235. The directory containing FILE becomes the initial working directory
  3236. and source-file directory for your debugger." t nil)
  3237.  
  3238. (autoload (quote sdb) "gud" "\
  3239. Run sdb on program FILE in buffer *gud-FILE*.
  3240. The directory containing FILE becomes the initial working directory
  3241. and source-file directory for your debugger." t nil)
  3242.  
  3243. (autoload (quote dbx) "gud" "\
  3244. Run dbx on program FILE in buffer *gud-FILE*.
  3245. The directory containing FILE becomes the initial working directory
  3246. and source-file directory for your debugger." t nil)
  3247.  
  3248. (autoload (quote xdb) "gud" "\
  3249. Run xdb on program FILE in buffer *gud-FILE*.
  3250. The directory containing FILE becomes the initial working directory
  3251. and source-file directory for your debugger.
  3252.  
  3253. You can set the variable 'gud-xdb-directories' to a list of program source
  3254. directories if your program contains sources from more than one directory." t nil)
  3255.  
  3256. (autoload (quote perldb) "gud" "\
  3257. Run perldb on program FILE in buffer *gud-FILE*.
  3258. The directory containing FILE becomes the initial working directory
  3259. and source-file directory for your debugger." t nil)
  3260.  
  3261. ;;;***
  3262.  
  3263. ;;;### (autoloads (hanoi) "hanoi" "hanoi.el" (11324 28709))
  3264. ;;; Generated autoloads from hanoi.el
  3265.  
  3266. (autoload (quote hanoi) "hanoi" "\
  3267. Towers of Hanoi diversion.  Argument is number of rings." t nil)
  3268.  
  3269. ;;;***
  3270.  
  3271. ;;;### (autoloads nil "help-macro" "help-macro.el" (11629 13592))
  3272. ;;; Generated autoloads from help-macro.el
  3273.  
  3274. (defvar three-step-help nil "\
  3275. *Non-nil means give more info about Help command in three steps.
  3276. The three steps are simple prompt, prompt with all options,
  3277. and window listing and describing the options.
  3278. A value of nil means skip the middle step, so that
  3279. \\[help-command] \\[help-command] gives the window that lists the options.")
  3280.  
  3281. ;;;***
  3282.  
  3283. ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" "helper.el" (10941 42412))
  3284. ;;; Generated autoloads from helper.el
  3285.  
  3286. (autoload (quote Helper-describe-bindings) "helper" "\
  3287. Describe local key bindings of current mode." t nil)
  3288.  
  3289. (autoload (quote Helper-help) "helper" "\
  3290. Provide help for current mode." t nil)
  3291.  
  3292. ;;;***
  3293.  
  3294. ;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl" "hexl.el" (11699 6354))
  3295. ;;; Generated autoloads from hexl.el
  3296.  
  3297. (autoload (quote hexl-mode) "hexl" "\
  3298. \\<hexl-mode-map>
  3299. A major mode for editing binary files in hex dump format.
  3300.  
  3301. This function automatically converts a buffer into the hexl format
  3302. using the function `hexlify-buffer'.
  3303.  
  3304. Each line in the buffer has an \"address\" (displayed in hexadecimal)
  3305. representing the offset into the file that the characters on this line
  3306. are at and 16 characters from the file (displayed as hexadecimal
  3307. values grouped every 16 bits) and as their ASCII values.
  3308.  
  3309. If any of the characters (displayed as ASCII characters) are
  3310. unprintable (control or meta characters) they will be replaced as
  3311. periods.
  3312.  
  3313. If `hexl-mode' is invoked with an argument the buffer is assumed to be
  3314. in hexl format.
  3315.  
  3316. A sample format:
  3317.  
  3318.   HEX ADDR: 0001 0203 0405 0607 0809 0a0b 0c0d 0e0f     ASCII-TEXT
  3319.   --------  ---- ---- ---- ---- ---- ---- ---- ----  ----------------
  3320.   00000000: 5468 6973 2069 7320 6865 786c 2d6d 6f64  This is hexl-mod
  3321.   00000010: 652e 2020 4561 6368 206c 696e 6520 7265  e.  Each line re
  3322.   00000020: 7072 6573 656e 7473 2031 3620 6279 7465  presents 16 byte
  3323.   00000030: 7320 6173 2068 6578 6164 6563 696d 616c  s as hexadecimal
  3324.   00000040: 2041 5343 4949 0a61 6e64 2070 7269 6e74   ASCII.and print
  3325.   00000050: 6162 6c65 2041 5343 4949 2063 6861 7261  able ASCII chara
  3326.   00000060: 6374 6572 732e 2020 416e 7920 636f 6e74  cters.  Any cont
  3327.   00000070: 726f 6c20 6f72 206e 6f6e 2d41 5343 4949  rol or non-ASCII
  3328.   00000080: 2063 6861 7261 6374 6572 730a 6172 6520   characters.are 
  3329.   00000090: 6469 7370 6c61 7965 6420 6173 2070 6572  displayed as per
  3330.   000000a0: 696f 6473 2069 6e20 7468 6520 7072 696e  iods in the prin
  3331.   000000b0: 7461 626c 6520 6368 6172 6163 7465 7220  table character 
  3332.   000000c0: 7265 6769 6f6e 2e0a                      region..
  3333.  
  3334. Movement is as simple as movement in a normal emacs text buffer.  Most
  3335. cursor movement bindings are the same (ie. Use \\[hexl-backward-char], \\[hexl-forward-char], \\[hexl-next-line], and \\[hexl-previous-line]
  3336. to move the cursor left, right, down, and up).
  3337.  
  3338. Advanced cursor movement commands (ala \\[hexl-beginning-of-line], \\[hexl-end-of-line], \\[hexl-beginning-of-buffer], and \\[hexl-end-of-buffer]) are
  3339. also supported.
  3340.  
  3341. There are several ways to change text in hexl mode:
  3342.  
  3343. ASCII characters (character between space (0x20) and tilde (0x7E)) are
  3344. bound to self-insert so you can simply type the character and it will
  3345. insert itself (actually overstrike) into the buffer.
  3346.  
  3347. \\[hexl-quoted-insert] followed by another keystroke allows you to insert the key even if
  3348. it isn't bound to self-insert.  An octal number can be supplied in place
  3349. of another key to insert the octal number's ASCII representation.
  3350.  
  3351. \\[hexl-insert-hex-char] will insert a given hexadecimal value (if it is between 0 and 0xFF)
  3352. into the buffer at the current point.
  3353.  
  3354. \\[hexl-insert-octal-char] will insert a given octal value (if it is between 0 and 0377)
  3355. into the buffer at the current point.
  3356.  
  3357. \\[hexl-insert-decimal-char] will insert a given decimal value (if it is between 0 and 255)
  3358. into the buffer at the current point.
  3359.  
  3360. \\[hexl-mode-exit] will exit hexl-mode.
  3361.  
  3362. Note: saving the file with any of the usual Emacs commands
  3363. will actually convert it back to binary format while saving.
  3364.  
  3365. You can use \\[hexl-find-file] to visit a file in hexl-mode.
  3366.  
  3367. \\[describe-bindings] for advanced commands." t nil)
  3368.  
  3369. (autoload (quote hexl-find-file) "hexl" "\
  3370. Edit file FILENAME in hexl-mode.
  3371. Switch to a buffer visiting file FILENAME, creating one in none exists." t nil)
  3372.  
  3373. (autoload (quote hexlify-buffer) "hexl" "\
  3374. Convert a binary buffer to hexl format" t nil)
  3375.  
  3376. ;;;***
  3377.  
  3378. ;;;### (autoloads (hide-ifdef-mode) "hideif" "hideif.el" (11681 52082))
  3379. ;;; Generated autoloads from hideif.el
  3380.  
  3381. (autoload (quote hide-ifdef-mode) "hideif" "\
  3382. Toggle Hide-Ifdef mode.  This is a minor mode, albeit a large one.
  3383. With ARG, turn Hide-Ifdef mode on iff arg is positive.
  3384. In Hide-Ifdef mode, code within #ifdef constructs that the C preprocessor
  3385. would eliminate may be hidden from view.  Several variables affect
  3386. how the hiding is done:
  3387.  
  3388. hide-ifdef-env
  3389.     An association list of defined and undefined symbols for the
  3390.     current buffer.  Initially, the global value of `hide-ifdef-env'
  3391.     is used.
  3392.  
  3393. hide-ifdef-define-alist
  3394.     An association list of defined symbol lists.  
  3395.         Use `hide-ifdef-set-define-alist' to save the current `hide-ifdef-env'
  3396.         and `hide-ifdef-use-define-alist' to set the current `hide-ifdef-env'
  3397.         from one of the lists in `hide-ifdef-define-alist'.
  3398.  
  3399. hide-ifdef-lines
  3400.     Set to non-nil to not show #if, #ifdef, #ifndef, #else, and
  3401.     #endif lines when hiding.
  3402.  
  3403. hide-ifdef-initially
  3404.     Indicates whether `hide-ifdefs' should be called when Hide-Ifdef mode
  3405.     is activated.
  3406.  
  3407. hide-ifdef-read-only
  3408.     Set to non-nil if you want to make buffers read only while hiding.
  3409.     After `show-ifdefs', read-only status is restored to previous value.
  3410.  
  3411. \\{hide-ifdef-mode-map}" t nil)
  3412.  
  3413. (defvar hide-ifdef-initially nil "\
  3414. *Non-nil if `hide-ifdefs' should be called when Hide-Ifdef mode
  3415. is first activated.")
  3416.  
  3417. (defvar hide-ifdef-read-only nil "\
  3418. *Set to non-nil if you want buffer to be read-only while hiding text.")
  3419.  
  3420. (defvar hide-ifdef-lines nil "\
  3421. *Set to t if you don't want to see the #ifX, #else, and #endif lines.")
  3422.  
  3423. ;;;***
  3424.  
  3425. ;;;### (autoloads (make-hippie-expand-function hippie-expand) "hippie-exp" "hippie-exp.el" (11545 8374))
  3426. ;;; Generated autoloads from hippie-exp.el
  3427.  
  3428. (defvar hippie-expand-try-functions-list (quote (try-complete-file-name try-expand-all-abbrevs try-expand-list try-expand-line try-expand-dabbrev try-expand-dabbrev-all-buffers try-complete-lisp-symbol)) "\
  3429. The list of expansion functions tried in order by `hippie-expand'.
  3430. To change the behavior of `hippie-expand', remove, change the order of,
  3431. or insert functions in this list.")
  3432.  
  3433. (defvar hippie-expand-verbose t "\
  3434. *Non-nil makes `hippie-expand' output which function it is trying.")
  3435.  
  3436. (defvar hippie-expand-max-buffers nil "\
  3437. *The maximum number of buffers (apart from the current) searched.
  3438. If nil, all buffers are searched.")
  3439.  
  3440. (defvar hippie-expand-ignore-buffers (quote ("^ \\*.*\\*$" dired-mode)) "\
  3441. *A list specifying which buffers not to search (if not current).
  3442. Can contain both regexps matching buffer names (as strings) and major modes
  3443. \(as atoms)")
  3444.  
  3445. (autoload (quote hippie-expand) "hippie-exp" "\
  3446. Try to expand text before point, using multiple methods.
  3447. The expansion functions in `hippie-expand-try-functions-list' are
  3448. tried in order, until a possible expansion is found.  Repeated
  3449. application of `hippie-expand' inserts successively possible
  3450. expansions.  
  3451. With a positive numeric argument, jumps directly to the ARG next
  3452. function in this list.  With a negative argument or just \\[universal-argument], 
  3453. undoes the expansion." t nil)
  3454.  
  3455. (autoload (quote make-hippie-expand-function) "hippie-exp" "\
  3456. Construct a function similar to `hippie-expand'.
  3457. Make it use the expansion functions in TRY-LIST.  An optional second
  3458. argument VERBOSE non-nil makes the function verbose." nil (quote macro))
  3459.  
  3460. ;;;***
  3461.  
  3462. ;;;### (autoloads (icomplete-prime-session) "icomplete" "icomplete.el" (11554 49615))
  3463. ;;; Generated autoloads from icomplete.el
  3464.  
  3465. (autoload (quote icomplete-prime-session) "icomplete" "\
  3466. Prep emacs v 19 for more finely-grained minibuffer completion-feedback.
  3467.  
  3468. You can inhibit icomplete after loading by setting icomplete-inhibit
  3469. non-nil.  Set the var back to nil to re-enable icomplete." nil nil)
  3470.  
  3471. ;;;***
  3472.  
  3473. ;;;### (autoloads (ielm) "ielm" "ielm.el" (11717 13511))
  3474. ;;; Generated autoloads from ielm.el
  3475.  
  3476. (autoload (quote ielm) "ielm" "\
  3477. Interactively evaluate Emacs Lisp expressions.
  3478. Switches to the buffer *ielm*, or creates it if it does not exist." t nil)
  3479.  
  3480. ;;;***
  3481.  
  3482. ;;;### (autoloads (imenu) "imenu" "imenu.el" (11720 5295))
  3483. ;;; Generated autoloads from imenu.el
  3484.  
  3485. (autoload (quote imenu) "imenu" "\
  3486. Jump to a place in the buffer chosen using a buffer menu or mouse menu.
  3487. See `imenu-choose-buffer-index' for more information." t nil)
  3488.  
  3489. ;;;***
  3490.  
  3491. ;;;### (autoloads (inferior-lisp) "inf-lisp" "inf-lisp.el" (11706 10361))
  3492. ;;; Generated autoloads from inf-lisp.el
  3493.  
  3494. (defvar inferior-lisp-filter-regexp "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'" "\
  3495. *What not to save on inferior Lisp's input history.
  3496. Input matching this regexp is not saved on the input history in Inferior Lisp
  3497. mode.  Default is whitespace followed by 0 or 1 single-letter colon-keyword 
  3498. \(as in :a, :c, etc.)")
  3499.  
  3500. (defvar inferior-lisp-program "lisp" "\
  3501. *Program name for invoking an inferior Lisp with for Inferior Lisp mode.")
  3502.  
  3503. (defvar inferior-lisp-load-command "(load \"%s\")\n" "\
  3504. *Format-string for building a Lisp expression to load a file.
  3505. This format string should use `%s' to substitute a file name
  3506. and should result in a Lisp expression that will command the inferior Lisp
  3507. to load that file.  The default works acceptably on most Lisps.
  3508. The string \"(progn (load \\\"%s\\\" :verbose nil :print t) (values))\\
  3509. \"
  3510. produces cosmetically superior output for this application,
  3511. but it works only in Common Lisp.")
  3512.  
  3513. (defvar inferior-lisp-prompt "^[^> \n]*>+:? *" "\
  3514. Regexp to recognise prompts in the Inferior Lisp mode.
  3515. Defaults to \"^[^> \\n]*>+:? *\", which works pretty good for Lucid, kcl,
  3516. and franz.  This variable is used to initialize `comint-prompt-regexp' in the 
  3517. Inferior Lisp buffer.
  3518.  
  3519. More precise choices:
  3520. Lucid Common Lisp: \"^\\(>\\|\\(->\\)+\\) *\"
  3521. franz: \"^\\(->\\|<[0-9]*>:\\) *\"
  3522. kcl: \"^>+ *\"
  3523.  
  3524. This is a fine thing to set in your .emacs file.")
  3525.  
  3526. (defvar inferior-lisp-mode-hook (quote nil) "\
  3527. *Hook for customising Inferior Lisp mode.")
  3528.  
  3529. (autoload (quote inferior-lisp) "inf-lisp" "\
  3530. Run an inferior Lisp process, input and output via buffer `*inferior-lisp*'.
  3531. If there is a process already running in `*inferior-lisp*', just switch
  3532. to that buffer.
  3533. With argument, allows you to edit the command line (default is value
  3534. of `inferior-lisp-program').  Runs the hooks from
  3535. `inferior-lisp-mode-hook' (after the `comint-mode-hook' is run).
  3536. \(Type \\[describe-mode] in the process buffer for a list of commands.)" t nil)
  3537.  
  3538. (defalias (quote run-lisp) (quote inferior-lisp))
  3539.  
  3540. ;;;***
  3541.  
  3542. ;;;### (autoloads (Info-goto-emacs-key-command-node Info-goto-emacs-command-node info-standalone info) "info" "info.el" (11702 42831))
  3543. ;;; Generated autoloads from info.el
  3544.  
  3545. (autoload (quote info) "info" "\
  3546. Enter Info, the documentation browser.
  3547. Optional argument FILE specifies the file to examine;
  3548. the default is the top-level directory of Info.
  3549.  
  3550. In interactive use, a prefix argument directs this command
  3551. to read a file name from the minibuffer." t nil)
  3552.  
  3553. (autoload (quote info-standalone) "info" "\
  3554. Run Emacs as a standalone Info reader.
  3555. Usage:  emacs -f info-standalone [filename]
  3556. In standalone mode, \\<Info-mode-map>\\[Info-exit] exits Emacs itself." nil nil)
  3557.  
  3558. (autoload (quote Info-goto-emacs-command-node) "info" "\
  3559. Go to the Info node in the Emacs manual for command COMMAND.
  3560. The command is found by looking up in Emacs manual's Command Index." t nil)
  3561.  
  3562. (autoload (quote Info-goto-emacs-key-command-node) "info" "\
  3563. Go to the Info node in the Emacs manual the command bound to KEY, a string.
  3564. Interactively, if the binding is execute-extended-command, a command is read.
  3565. The command is found by looking up in Emacs manual's Command Index." t nil)
  3566.  
  3567. ;;;***
  3568.  
  3569. ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) "informat" "informat.el" (11136 13191))
  3570. ;;; Generated autoloads from informat.el
  3571.  
  3572. (autoload (quote Info-tagify) "informat" "\
  3573. Create or update Info-file tag table in current buffer." t nil)
  3574.  
  3575. (autoload (quote Info-split) "informat" "\
  3576. Split an info file into an indirect file plus bounded-size subfiles.
  3577. Each subfile will be up to 50,000 characters plus one node.
  3578.  
  3579. To use this command, first visit a large Info file that has a tag
  3580. table.  The buffer is modified into a (small) indirect info file which
  3581. should be saved in place of the original visited file.
  3582.  
  3583. The subfiles are written in the same directory the original file is
  3584. in, with names generated by appending `-' and a number to the original
  3585. file name.  The indirect file still functions as an Info file, but it
  3586. contains just the tag table and a directory of subfiles." t nil)
  3587.  
  3588. (autoload (quote Info-validate) "informat" "\
  3589. Check current buffer for validity as an Info file.
  3590. Check that every node pointer points to an existing node." t nil)
  3591.  
  3592. (autoload (quote batch-info-validate) "informat" "\
  3593. Runs `Info-validate' on the files remaining on the command line.
  3594. Must be used only with -batch, and kills Emacs on completion.
  3595. Each file will be processed even if an error occurred previously.
  3596. For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"" nil nil)
  3597.  
  3598. ;;;***
  3599.  
  3600. ;;;### (autoloads (iso-accents-mode) "iso-acc" "iso-acc.el" (11658 32759))
  3601. ;;; Generated autoloads from iso-acc.el
  3602.  
  3603. (autoload (quote iso-accents-mode) "iso-acc" "\
  3604. Toggle ISO Accents mode, in which accents modify the following letter.
  3605. This permits easy insertion of accented characters according to ISO-8859-1.
  3606. When Iso-accents mode is enabled, accent character keys
  3607. \(`, ', \", ^, / and ~) do not self-insert; instead, they modify the following
  3608. letter key so that it inserts an ISO accented letter.
  3609.  
  3610. The variable `iso-accents-enable' specifies the list of characters to
  3611. enable as accents.  If you don't need all of them, remove the ones you
  3612. don't need from that list.
  3613.  
  3614. Special combinations: ~c gives a c with cedilla,
  3615. ~d gives a d with dash.
  3616. \"s gives German sharp s.
  3617. /a gives a with ring.
  3618. /e gives an a-e ligature.
  3619. ~< and ~> give guillemets.
  3620.  
  3621. With an argument, a positive argument enables ISO Accents mode, 
  3622. and a negative argument disables it." t nil)
  3623.  
  3624. ;;;***
  3625.  
  3626. ;;;### (autoloads (ispell-message ispell-complete-word-interior-frag ispell-complete-word ispell-continue ispell-buffer ispell-region ispell-change-dictionary ispell-kill-ispell ispell-help ispell-word) "ispell" "ispell.el" (11890 39032))
  3627. ;;; Generated autoloads from ispell.el
  3628.  
  3629. (defvar ispell-dictionary-alist-1 (quote ((nil "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil) ("english" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil) ("deutsch" "[a-zA-Z\"]" "[^a-zA-Z\"]" "[---']" t ("-C") nil) ("deutsch8" "[a-zA-ZÄÖÜäößü]" "[^a-zA-ZÄÖÜäößü]" "[---']" t ("-C" "-d" "deutsch") "~latin1") ("nederlands8" "[A-Za-zÀ-ÅÇÈ-ÏÒ-ÖÙ-Üà-åçè-ïñò-öù-ü]" "[^A-Za-zÀ-ÅÇÈ-ÏÒ-ÖÙ-Üà-åçè-ïñò-öù-ü]" "[---']" t ("-C") nil))))
  3630.  
  3631. (defvar ispell-dictionary-alist-2 (quote (("svenska" "[A-Za-z}{|\\133\\135\\\\]" "[^A-Za-z}{|\\133\\135\\\\]" "[---']" nil ("-C") nil) ("svenska8" "[A-Za-zåäöÅÄö]" "[^A-Za-zåäöÅÄö]" "[---']" nil ("-C" "-d" "svenska") "~list") ("francais" "[A-Za-z]" "[^A-Za-z]" "[`'^-]" t nil nil) ("francais8" "[A-Za-zÀÂÆÇÈÉÊËÎÏÔÙÛÜàâæçèéêëîïôùûü]" "[^A-Za-zÀÂÄÆÇÈÉÊËÎÏÔÖÙÛÜàâäæçèéêëîïôöùûü]" "[---']" t nil "~list") ("dansk" "[A-ZÆØÅa-zæøå]" "[^A-ZÆØÅa-zæøå]" "[---]" nil ("-C") nil))))
  3632.  
  3633. (defvar ispell-dictionary-alist (append ispell-dictionary-alist-1 ispell-dictionary-alist-2) "\
  3634. An alist of dictionaries and their associated parameters.
  3635.  
  3636. Each element of this list is also a list:
  3637.  
  3638. \(DICTIONARY-NAME CASECHARS NOT-CASECHARS OTHERCHARS MANY-OTHERCHARS-P
  3639.         ISPELL-ARGS EXTENDED-CHARACTER-MODE)
  3640.  
  3641. DICTIONARY-NAME is a possible value of variable `ispell-dictionary', nil
  3642. means the default dictionary.
  3643.  
  3644. CASECHARS is a regular expression of valid characters that comprise a
  3645. word.
  3646.  
  3647. NOT-CASECHARS is the opposite regexp of CASECHARS.
  3648.  
  3649. OTHERCHARS is a regular expression of other characters that are valid
  3650. in word constructs.  Otherchars cannot be adjacent to each other in a
  3651. word, nor can they begin or end a word.  This implies we can't check
  3652. \"Stevens'\" as a correct possessive and other correct formations.
  3653.  
  3654. Hint: regexp syntax requires the hyphen to be declared first here.
  3655.  
  3656. MANY-OTHERCHARS-P is non-nil if many otherchars are to be allowed in a
  3657. word instead of only one.
  3658.  
  3659. ISPELL-ARGS is a list of additional arguments passed to the ispell
  3660. subprocess.
  3661.  
  3662. EXTENDED-CHARACTER-MODE should be used when dictionaries are used which
  3663. have been configured in Ispell's parse.y.  (For example, umlauts
  3664. can be encoded as \\\"a, a\\\", \"a, ...)  Defaults are ~tex and ~nroff
  3665. in English.  This has the same effect as the command-line `-T' option.
  3666. The buffer Major Mode controls Ispell's parsing in tex or nroff mode,
  3667. but the dictionary can control the extended character mode.
  3668. Both defaults can be overruled in a buffer-local fashion. See
  3669. `ispell-parsing-keyword' for details on this.
  3670.  
  3671. Note that the CASECHARS and OTHERCHARS slots of the alist should
  3672. contain the same character set as casechars and otherchars in the
  3673. language.aff file (e.g., english.aff).")
  3674.  
  3675. (defvar ispell-menu-map nil)
  3676.  
  3677. (defconst ispell-menu-map-needed (and (not ispell-menu-map) (boundp (quote system-key-alist))))
  3678.  
  3679. (if ispell-menu-map-needed (let ((dicts (reverse (cons (cons "default" nil) ispell-dictionary-alist))) name) (setq ispell-menu-map (make-sparse-keymap "Spell")) (while dicts (setq name (car (car dicts)) dicts (cdr dicts)) (if (stringp name) (define-key ispell-menu-map (vector (intern name)) (cons (concat "Select " (capitalize name)) (list (quote lambda) nil (quote (interactive)) (list (quote ispell-change-dictionary) name))))))))
  3680.  
  3681. (if ispell-menu-map-needed (progn (define-key ispell-menu-map [ispell-change-dictionary] (quote ("Change Dictionary" . ispell-change-dictionary))) (define-key ispell-menu-map [ispell-kill-ispell] (quote ("Kill Process" . ispell-kill-ispell))) (define-key ispell-menu-map [ispell-pdict-save] (quote ("Save Dictionary" lambda nil (interactive) (ispell-pdict-save t)))) (define-key ispell-menu-map [ispell-complete-word] (quote ("Complete Word" . ispell-complete-word))) (define-key ispell-menu-map [ispell-complete-word-interior-frag] (quote ("Complete Word Frag" . ispell-complete-word-interior-frag)))))
  3682.  
  3683. (if ispell-menu-map-needed (progn (define-key ispell-menu-map [ispell-continue] (quote ("Continue Check" . ispell-continue))) (define-key ispell-menu-map [ispell-region] (quote ("Check Region" . ispell-region))) (define-key ispell-menu-map [ispell-word] (quote ("Check Word" . ispell-word))) (define-key ispell-menu-map [ispell-buffer] (quote ("Check Buffer" . ispell-buffer)))))
  3684.  
  3685. (if ispell-menu-map-needed (progn (define-key ispell-menu-map [ispell-message] (quote ("Check Message" . ispell-message))) (define-key ispell-menu-map [ispell-help] (quote ("Help" lambda nil (interactive) (describe-function (quote ispell-help))))) (put (quote ispell-region) (quote menu-enable) (quote mark-active))))
  3686.  
  3687. (fset (quote ispell-menu-map) (symbol-value (quote ispell-menu-map)))
  3688. (define-key global-map "\M-$" 'ispell-word)
  3689.  
  3690. (autoload (quote ispell-word) "ispell" "\
  3691. Check spelling of word under or before the cursor.
  3692. If the word is not found in dictionary, display possible corrections
  3693. in a window and so you can choose one.
  3694.  
  3695. With a prefix argument (or if CONTINUE is non-nil),
  3696. resume interrupted spell-checking of a buffer or region.
  3697.  
  3698. If optional argument FOLLOWING is non-nil or if `ispell-following-word'
  3699. is non-nil when called interactively, then the following word
  3700. \(rather than preceding) is checked when the cursor is not over a word.
  3701. When the optional argument QUIETLY is non-nil or `ispell-quietly' is non-nil
  3702. when called interactively, non-corrective messages are suppressed.
  3703.  
  3704. Word syntax described by `ispell-dictionary-alist' (which see).
  3705.  
  3706. This will check or reload the dictionary.  Use \\[ispell-change-dictionary]
  3707. or \\[ispell-region] to update the Ispell process." t nil)
  3708.  
  3709. (autoload (quote ispell-help) "ispell" "\
  3710. Display a list of the options available when a misspelling is encountered.
  3711.  
  3712. Selections are:
  3713.  
  3714. DIGIT: Replace the word with a digit offered in the *Choices* buffer.
  3715. SPC:   Accept word this time.
  3716. `i':   Accept word and insert into private dictionary.
  3717. `a':   Accept word for this session.
  3718. `A':   Accept word and place in `buffer-local dictionary'.
  3719. `r':   Replace word with typed-in value.  Rechecked.
  3720. `R':   Replace word with typed-in value. Query-replaced in buffer. Rechecked.
  3721. `?':   Show these commands.
  3722. `x':   Exit spelling buffer.  Move cursor to original point.
  3723. `X':   Exit spelling buffer.  Leaves cursor at the current point, and permits
  3724.         the aborted check to be completed later.
  3725. `q':   Quit spelling session (Kills ispell process).
  3726. `l':   Look up typed-in replacement in alternate dictionary.  Wildcards okay.
  3727. `u':   Like `i', but the word is lower-cased first.
  3728. `m':   Like `i', but allows one to include dictionary completion information.
  3729. `C-l':  redraws screen
  3730. `C-r':  recursive edit
  3731. `C-z':  suspend emacs or iconify frame" nil nil)
  3732.  
  3733. (autoload (quote ispell-kill-ispell) "ispell" "\
  3734. Kill current Ispell process (so that you may start a fresh one).
  3735. With NO-ERROR, just return non-nil if there was no Ispell running." t nil)
  3736.  
  3737. (autoload (quote ispell-change-dictionary) "ispell" "\
  3738. Change `ispell-dictionary' (q.v.) and kill old Ispell process.
  3739. A new one will be started as soon as necessary.
  3740.  
  3741. By just answering RET you can find out what the current dictionary is.
  3742.  
  3743. With prefix argument, set the default directory." t nil)
  3744.  
  3745. (autoload (quote ispell-region) "ispell" "\
  3746. Interactively check a region for spelling errors." t nil)
  3747.  
  3748. (autoload (quote ispell-buffer) "ispell" "\
  3749. Check the current buffer for spelling errors interactively." t nil)
  3750.  
  3751. (autoload (quote ispell-continue) "ispell" nil t nil)
  3752.  
  3753. (autoload (quote ispell-complete-word) "ispell" "\
  3754. Look up word before or under point in dictionary (see lookup-words command)
  3755. and try to complete it.  If optional INTERIOR-FRAG is non-nil then the word
  3756. may be a character sequence inside of a word.
  3757.  
  3758. Standard ispell choices are then available." t nil)
  3759.  
  3760. (autoload (quote ispell-complete-word-interior-frag) "ispell" "\
  3761. Completes word matching character sequence inside a word." t nil)
  3762.  
  3763. (autoload (quote ispell-message) "ispell" "\
  3764. Check the spelling of a mail message or news post.
  3765. Don't check spelling of message headers except the Subject field.
  3766. Don't check included messages.
  3767.  
  3768. To abort spell checking of a message REGION and send the message anyway,
  3769. use the `x' or `q' command.  (Any subsequent regions will be checked.)
  3770. The `X' command aborts the message send so that you can edit the buffer.
  3771.  
  3772. To spell-check whenever a message is sent, include the appropriate lines
  3773. in your .emacs file:
  3774.    (add-hook 'news-inews-hook 'ispell-message)
  3775.    (add-hook 'mail-send-hook  'ispell-message)
  3776.    (add-hook 'mh-before-send-letter-hook 'ispell-message)
  3777.  
  3778. you can bind this to the key C-c i in GNUS or mail by adding to
  3779. `news-reply-mode-hook' or `mail-mode-hook' the following lambda expression:
  3780.    (function (lambda () (local-set-key \"\\C-ci\" 'ispell-message)))" t nil)
  3781.  
  3782. ;;;***
  3783.  
  3784. ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" (11181 53296))
  3785. ;;; Generated autoloads from ledit.el
  3786.  
  3787. (defconst ledit-save-files t "\
  3788. *Non-nil means Ledit should save files before transferring to Lisp.")
  3789.  
  3790. (defconst ledit-go-to-lisp-string "%?lisp" "\
  3791. *Shell commands to execute to resume Lisp job.")
  3792.  
  3793. (defconst ledit-go-to-liszt-string "%?liszt" "\
  3794. *Shell commands to execute to resume Lisp compiler job.")
  3795.  
  3796. (autoload (quote ledit-mode) "ledit" "\
  3797. \\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job.
  3798. Like Lisp mode, plus these special commands:
  3799.   \\[ledit-save-defun]    -- record defun at or after point
  3800.        for later transmission to Lisp job.
  3801.   \\[ledit-save-region] -- record region for later transmission to Lisp job.
  3802.   \\[ledit-go-to-lisp] -- transfer to Lisp job and transmit saved text.
  3803.   \\[ledit-go-to-liszt] -- transfer to Liszt (Lisp compiler) job
  3804.        and transmit saved text.
  3805. \\{ledit-mode-map}
  3806. To make Lisp mode automatically change to Ledit mode,
  3807. do (setq lisp-mode-hook 'ledit-from-lisp-mode)" t nil)
  3808.  
  3809. (autoload (quote ledit-from-lisp-mode) "ledit" nil nil nil)
  3810.  
  3811. ;;;***
  3812.  
  3813. ;;;### (autoloads (life) "life" "life.el" (11356 11391))
  3814. ;;; Generated autoloads from life.el
  3815.  
  3816. (autoload (quote life) "life" "\
  3817. Run Conway's Life simulation.
  3818. The starting pattern is randomly selected.  Prefix arg (optional first
  3819. arg non-nil from a program) is the number of seconds to sleep between
  3820. generations (this defaults to 1)." t nil)
  3821.  
  3822. ;;;***
  3823.  
  3824. ;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (11546 39469))
  3825. ;;; Generated autoloads from loadhist.el
  3826.  
  3827. (autoload (quote unload-feature) "loadhist" "\
  3828. Unload the library that provided FEATURE, restoring all its autoloads.
  3829. If the feature is required by any other loaded code, and optional FORCE
  3830. is nil, raise an error." t nil)
  3831.  
  3832. ;;;***
  3833.  
  3834. ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer) "lpr" "lpr.el" (11559 63920))
  3835. ;;; Generated autoloads from lpr.el
  3836.  
  3837. (defvar lpr-switches nil "\
  3838. *List of strings to pass as extra switch args to `lpr' when it is invoked.")
  3839.  
  3840. (defvar lpr-command (if (memq system-type (quote (usg-unix-v dgux hpux irix))) "lp" "lpr") "\
  3841. *Shell command for printing a file")
  3842.  
  3843. (autoload (quote lpr-buffer) "lpr" "\
  3844. Print buffer contents as with Unix command `lpr'.
  3845. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  3846.  
  3847. (autoload (quote print-buffer) "lpr" "\
  3848. Print buffer contents as with Unix command `lpr -p'.
  3849. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  3850.  
  3851. (autoload (quote lpr-region) "lpr" "\
  3852. Print region contents as with Unix command `lpr'.
  3853. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  3854.  
  3855. (autoload (quote print-region) "lpr" "\
  3856. Print region contents as with Unix command `lpr -p'.
  3857. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  3858.  
  3859. ;;;***
  3860.  
  3861. ;;;### (autoloads (phases-of-moon) "lunar" "lunar.el" (11759 36944))
  3862. ;;; Generated autoloads from lunar.el
  3863.  
  3864. (autoload (quote phases-of-moon) "lunar" "\
  3865. Display the quarters of the moon for last month, this month, and next month.
  3866. If called with an optional prefix argument, prompts for month and year.
  3867.  
  3868. This function is suitable for execution in a .emacs file." t nil)
  3869.  
  3870. ;;;***
  3871.  
  3872. ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro name-last-kbd-macro) "macros" "macros.el" (11628 26005))
  3873. ;;; Generated autoloads from macros.el
  3874.  
  3875. (autoload (quote name-last-kbd-macro) "macros" "\
  3876. Assign a name to the last keyboard macro defined.
  3877. Argument SYMBOL is the name to define.
  3878. The symbol's function definition becomes the keyboard macro string.
  3879. Such a \"function\" cannot be called from Lisp, but it is a valid editor command." t nil)
  3880.  
  3881. (autoload (quote insert-kbd-macro) "macros" "\
  3882. Insert in buffer the definition of kbd macro NAME, as Lisp code.
  3883. Optional second arg KEYS means also record the keys it is on
  3884. \(this is the prefix argument, when calling interactively).
  3885.  
  3886. This Lisp code will, when executed, define the kbd macro with the same
  3887. definition it has now.  If you say to record the keys, the Lisp code
  3888. will also rebind those keys to the macro.  Only global key bindings
  3889. are recorded since executing this Lisp code always makes global
  3890. bindings.
  3891.  
  3892. To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
  3893. use this command, and then save the file." t nil)
  3894.  
  3895. (autoload (quote kbd-macro-query) "macros" "\
  3896. Query user during kbd macro execution.
  3897.   With prefix argument, enters recursive edit, reading keyboard
  3898. commands even within a kbd macro.  You can give different commands
  3899. each time the macro executes.
  3900.   Without prefix argument, asks whether to continue running the macro.
  3901. Your options are: \\<query-replace-map>
  3902. \\[act]    Finish this iteration normally and continue with the next.
  3903. \\[skip]    Skip the rest of this iteration, and start the next.
  3904. \\[exit]    Stop the macro entirely right now.
  3905. \\[recenter]    Redisplay the screen, then ask again.
  3906. \\[edit]    Enter recursive edit; ask again when you exit from that." t nil)
  3907.  
  3908. (autoload (quote apply-macro-to-region-lines) "macros" "\
  3909. For each complete line between point and mark, move to the beginning
  3910. of the line, and run the last keyboard macro.
  3911.  
  3912. When called from lisp, this function takes two arguments TOP and
  3913. BOTTOM, describing the current region.  TOP must be before BOTTOM.
  3914. The optional third argument MACRO specifies a keyboard macro to
  3915. execute.
  3916.  
  3917. This is useful for quoting or unquoting included text, adding and
  3918. removing comments, or producing tables where the entries are regular.
  3919.  
  3920. For example, in Usenet articles, sections of text quoted from another
  3921. author are indented, or have each line start with `>'.  To quote a
  3922. section of text, define a keyboard macro which inserts `>', put point
  3923. and mark at opposite ends of the quoted section, and use
  3924. `\\[apply-macro-to-region-lines]' to mark the entire section.
  3925.  
  3926. Suppose you wanted to build a keyword table in C where each entry
  3927. looked like this:
  3928.  
  3929.     { \"foo\", foo_data, foo_function }, 
  3930.     { \"bar\", bar_data, bar_function },
  3931.     { \"baz\", baz_data, baz_function },
  3932.  
  3933. You could enter the names in this format:
  3934.  
  3935.     foo
  3936.     bar
  3937.     baz
  3938.  
  3939. and write a macro to massage a word into a table entry:
  3940.  
  3941.     \\C-x (
  3942.        \\M-d { \"\\C-y\", \\C-y_data, \\C-y_function },
  3943.     \\C-x )
  3944.  
  3945. and then select the region of un-tablified names and use
  3946. `\\[apply-macro-to-region-lines]' to build the table from the names.
  3947. " t nil)
  3948. (define-key ctl-x-map "q" 'kbd-macro-query)
  3949.  
  3950. ;;;***
  3951.  
  3952. ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" "mail-extr.el" (11706 51735))
  3953. ;;; Generated autoloads from mail-extr.el
  3954.  
  3955. (autoload (quote mail-extract-address-components) "mail-extr" "\
  3956. Given an RFC-822 ADDRESS, extract full name and canonical address.
  3957. Returns a list of the form (FULL-NAME CANONICAL-ADDRESS).
  3958. If no name can be extracted, FULL-NAME will be nil.
  3959. ADDRESS may be a string or a buffer.  If it is a buffer, the visible 
  3960.  (narrowed) portion of the buffer will be interpreted as the address.
  3961.  (This feature exists so that the clever caller might be able to avoid
  3962.  consing a string.)
  3963. If ADDRESS contains more than one RFC-822 address, only the first is
  3964.  returned.  Some day this function may be extended to extract multiple
  3965.  addresses, or perhaps return the position at which parsing stopped." nil nil)
  3966.  
  3967. (autoload (quote what-domain) "mail-extr" "\
  3968. Convert mail domain to country tit corresponds to." t nil)
  3969.  
  3970. ;;;***
  3971.  
  3972. ;;;### (autoloads (mail-fetch-field) "mail-utils" "mail-utils.el" (11612 266))
  3973. ;;; Generated autoloads from mail-utils.el
  3974.  
  3975. (defvar mail-use-rfc822 nil "\
  3976. *If non-nil, use a full, hairy RFC822 parser on mail addresses.
  3977. Otherwise, (the default) use a smaller, somewhat faster, and
  3978. often correct parser.")
  3979.  
  3980. (autoload (quote mail-fetch-field) "mail-utils" "\
  3981. Return the value of the header field FIELD-NAME.
  3982. The buffer is expected to be narrowed to just the headers of the message.
  3983. If second arg LAST is non-nil, use the last such field if there are several.
  3984. If third arg ALL is non-nil, concatenate all such fields with commas between." nil nil)
  3985.  
  3986. ;;;***
  3987.  
  3988. ;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup) "mailabbrev" "mailabbrev.el" (11570 15154))
  3989. ;;; Generated autoloads from mailabbrev.el
  3990.  
  3991. (autoload (quote mail-abbrevs-setup) "mailabbrev" nil nil nil)
  3992.  
  3993. (autoload (quote build-mail-abbrevs) "mailabbrev" "\
  3994. Read mail aliases from `~/.mailrc' file and set `mail-abbrevs'." nil nil)
  3995.  
  3996. (autoload (quote define-mail-abbrev) "mailabbrev" "\
  3997. Define NAME as a mail-abbrev that translates to DEFINITION.
  3998. If DEFINITION contains multiple addresses, separate them with commas." t nil)
  3999.  
  4000. ;;;***
  4001.  
  4002. ;;;### (autoloads (define-mail-alias) "mailalias" "mailalias.el" (11294 13866))
  4003. ;;; Generated autoloads from mailalias.el
  4004.  
  4005. (autoload (quote define-mail-alias) "mailalias" "\
  4006. Define NAME as a mail alias that translates to DEFINITION.
  4007. This means that sending a message to NAME will actually send to DEFINITION.
  4008. DEFINITION can be one or more mail addresses separated by commas." t nil)
  4009.  
  4010. ;;;***
  4011.  
  4012. ;;;### (autoloads (makefile-mode) "makefile" "makefile.el" (11704 12708))
  4013. ;;; Generated autoloads from makefile.el
  4014.  
  4015. (autoload (quote makefile-mode) "makefile" "\
  4016. Major mode for editing Makefiles.
  4017. Calling this function invokes the function(s) \"makefile-mode-hook\" before
  4018. doing anything else.
  4019.  
  4020. \\{makefile-mode-map}
  4021.  
  4022. In the browser, use the following keys:
  4023.  
  4024. \\{makefile-browser-map}
  4025.  
  4026. makefile-mode can be configured by modifying the following
  4027. variables:
  4028.  
  4029. makefile-mode-name:
  4030.     The \"pretty name\" of makefile-mode, as it
  4031.     appears in the modeline.
  4032.  
  4033. makefile-browser-buffer-name:
  4034.     Name of the macro- and target browser buffer.
  4035.  
  4036. makefile-target-colon:
  4037.     The string that gets appended to all target names
  4038.     inserted by makefile-insert-target.
  4039.     \":\" or \"::\" are quite common values.
  4040.  
  4041. makefile-macro-assign:
  4042.    The string that gets appended to all macro names
  4043.    inserted by makefile-insert-macro.
  4044.    The normal value should be \" = \", since this is what
  4045.    standard make expects. However, newer makes such as dmake
  4046.    allow a larger variety of different macro assignments, so you
  4047.    might prefer to use \" += \" or \" := \" .
  4048.  
  4049. makefile-tab-after-target-colon:
  4050.    If you want a TAB (instead of a space) to be appended after the
  4051.    target colon, then set this to a non-nil value.
  4052.  
  4053. makefile-browser-leftmost-column:
  4054.    Number of blanks to the left of the browser selection mark.
  4055.  
  4056. makefile-browser-cursor-column:
  4057.    Column in which the cursor is positioned when it moves
  4058.    up or down in the browser.
  4059.  
  4060. makefile-browser-selected-mark:
  4061.    String used to mark selected entries in the browser.
  4062.  
  4063. makefile-browser-unselected-mark:
  4064.    String used to mark unselected entries in the browser.
  4065.  
  4066. makefile-browser-auto-advance-after-selection-p:
  4067.    If this variable is set to a non-nil value the cursor
  4068.    will automagically advance to the next line after an item
  4069.    has been selected in the browser.
  4070.  
  4071. makefile-pickup-everything-picks-up-filenames-p:
  4072.    If this variable is set to a non-nil value then
  4073.    makefile-pickup-everything also picks up filenames as targets
  4074.    (i.e. it calls makefile-find-filenames-as-targets), otherwise
  4075.    filenames are omitted.
  4076.  
  4077. makefile-cleanup-continuations-p:
  4078.    If this variable is set to a non-nil value then makefile-mode
  4079.    will assure that no line in the file ends with a backslash
  4080.    (the continuation character) followed by any whitespace.
  4081.    This is done by silently removing the trailing whitespace, leaving
  4082.    the backslash itself intact.
  4083.    IMPORTANT: Please note that enabling this option causes makefile-mode
  4084.    to MODIFY A FILE WITHOUT YOUR CONFIRMATION when 'it seems necessary'.
  4085.  
  4086. makefile-browser-hook:
  4087.    A function or list of functions to be called just before the
  4088.    browser is entered. This is executed in the makefile buffer.
  4089.  
  4090. makefile-special-targets-list:
  4091.    List of special targets. You will be offered to complete
  4092.    on one of those in the minibuffer whenever you enter a \".\"
  4093.    at the beginning of a line in makefile-mode." t nil)
  4094.  
  4095. ;;;***
  4096.  
  4097. ;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (11181 53304))
  4098. ;;; Generated autoloads from makesum.el
  4099.  
  4100. (autoload (quote make-command-summary) "makesum" "\
  4101. Make a summary of current key bindings in the buffer *Summary*.
  4102. Previous contents of that buffer are killed first." t nil)
  4103.  
  4104. ;;;***
  4105.  
  4106. ;;;### (autoloads (manual-entry) "man" "man.el" (11717 22210))
  4107. ;;; Generated autoloads from man.el
  4108.  
  4109. (defalias (quote man) (quote manual-entry))
  4110.  
  4111. (autoload (quote manual-entry) "man" "\
  4112. Get a Un*x manual page and put it in a buffer.
  4113. This command is the top-level command in the man package.  It runs a Un*x
  4114. command to retrieve and clean a manpage in the background and places the
  4115. results in a Man mode (manpage browsing) buffer.  See variable
  4116. `Man-notify' for what happens when the buffer is ready.
  4117. Normally, if a buffer already exists for this man page, it will display
  4118. immediately; either a prefix argument or a nil value to `Man-reuse-okay-p'
  4119. overrides this and forces the man page to be regenerated." t nil)
  4120.  
  4121. ;;;***
  4122.  
  4123. ;;;### (autoloads (map-y-or-n-p) "map-ynp" "map-ynp.el" (11662 15153))
  4124. ;;; Generated autoloads from map-ynp.el
  4125.  
  4126. (autoload (quote map-y-or-n-p) "map-ynp" "\
  4127. Ask a series of boolean questions.
  4128. Takes args PROMPTER ACTOR LIST, and optional args HELP and ACTION-ALIST.
  4129.  
  4130. LIST is a list of objects, or a function of no arguments to return the next
  4131. object or nil.
  4132.  
  4133. If PROMPTER is a string, the prompt is (format PROMPTER OBJECT).  If not
  4134. a string, PROMPTER is a function of one arg (an object from LIST), which
  4135. returns a string to be used as the prompt for that object.  If the return
  4136. value is not a string, it is eval'd to get the answer; it may be nil to
  4137. ignore the object, t to act on the object without asking the user, or a
  4138. form to do a more complex prompt.
  4139.  
  4140. ACTOR is a function of one arg (an object from LIST),
  4141. which gets called with each object that the user answers `yes' for.
  4142.  
  4143. If HELP is given, it is a list (OBJECT OBJECTS ACTION),
  4144. where OBJECT is a string giving the singular noun for an elt of LIST;
  4145. OBJECTS is the plural noun for elts of LIST, and ACTION is a transitive
  4146. verb describing ACTOR.  The default is (\"object\" \"objects\" \"act on\").
  4147.  
  4148. At the prompts, the user may enter y, Y, or SPC to act on that object;
  4149. n, N, or DEL to skip that object; ! to act on all following objects;
  4150. ESC or q to exit (skip all following objects); . (period) to act on the
  4151. current object and then exit; or \\[help-command] to get help.
  4152.  
  4153. If ACTION-ALIST is given, it is an alist (KEY FUNCTION HELP) of extra keys
  4154. that will be accepted.  KEY is a character; FUNCTION is a function of one
  4155. arg (an object from LIST); HELP is a string.  When the user hits KEY,
  4156. FUNCTION is called.  If it returns non-nil, the object is considered
  4157. \"acted upon\", and the next object from LIST is processed.  If it returns
  4158. nil, the prompt is repeated for the same object.
  4159.  
  4160. Final optional argument NO-CURSOR-IN-ECHO-AREA non-nil says not to set
  4161. `cursor-in-echo-area' while prompting.
  4162.  
  4163. This function uses `query-replace-map' to define the standard responses,
  4164. but not all of the responses which `query-replace' understands
  4165. are meaningful here.
  4166.  
  4167. Returns the number of actions taken." nil nil)
  4168.  
  4169. ;;;***
  4170.  
  4171. ;;;### (autoloads (mh-letter-mode mh-smail-other-window mh-smail) "mh-comp" "mh-comp.el" (11653 21178))
  4172. ;;; Generated autoloads from mh-comp.el
  4173.  
  4174. (autoload (quote mh-smail) "mh-comp" "\
  4175. Compose and send mail with the MH mail system.
  4176. This function is an entry point to mh-e, the Emacs front end
  4177. to the MH mail system." t nil)
  4178.  
  4179. (autoload (quote mh-smail-other-window) "mh-comp" "\
  4180. Compose and send mail in other window with the MH mail system.
  4181. This function is an entry point to mh-e, the Emacs front end
  4182. to the MH mail system." t nil)
  4183.  
  4184. (autoload (quote mh-letter-mode) "mh-comp" "\
  4185. Mode for composing letters in mh-e.\\<mh-letter-mode-map>
  4186. When you have finished composing, type \\[mh-send-letter] to send the letter.
  4187.  
  4188. \\{mh-letter-mode-map}
  4189.  
  4190. Variables controlling this mode (defaults in parentheses):
  4191.  
  4192.  mh-delete-yanked-msg-window (nil)
  4193.     If non-nil, \\[mh-yank-cur-msg] will delete any windows displaying
  4194.     the yanked message.
  4195.  
  4196.  mh-yank-from-start-of-msg (t)
  4197.     If non-nil, \\[mh-yank-cur-msg] will include the entire message.
  4198.     If `body', just yank the body (no header).
  4199.     If nil, only the portion of the message following the point will be yanked.
  4200.     If there is a region, this variable is ignored.
  4201.  
  4202.  mh-signature-file-name (\"~/.signature\")
  4203.     File to be inserted into message by \\[mh-insert-signature].
  4204.  
  4205. Upon invoking mh-letter-mode, text-mode-hook and mh-letter-mode-hook are
  4206. invoked with no args, if those values are non-nil." t nil)
  4207.  
  4208. ;;;***
  4209.  
  4210. ;;;### (autoloads (mh-rmail) "mh-e" "mh-e.el" (11692 22821))
  4211. ;;; Generated autoloads from mh-e.el
  4212.  
  4213. (autoload (quote mh-rmail) "mh-e" "\
  4214. Inc(orporate) new mail with MH, or, with arg, scan an MH mail folder.
  4215. This function is an entry point to mh-e, the Emacs front end
  4216. to the MH mail system." t nil)
  4217.  
  4218. ;;;***
  4219.  
  4220. ;;;### (autoloads (convert-mocklisp-buffer) "mlconvert" "mlconvert.el" (11339 6975))
  4221. ;;; Generated autoloads from mlconvert.el
  4222.  
  4223. (autoload (quote convert-mocklisp-buffer) "mlconvert" "\
  4224. Convert buffer of Mocklisp code to real Lisp that GNU Emacs can run." t nil)
  4225.  
  4226. ;;;***
  4227.  
  4228. ;;;### (autoloads (modula-2-mode) "modula2" "modula2.el" (11181 53306))
  4229. ;;; Generated autoloads from modula2.el
  4230.  
  4231. (autoload (quote modula-2-mode) "modula2" "\
  4232. This is a mode intended to support program development in Modula-2.
  4233. All control constructs of Modula-2 can be reached by typing C-c
  4234. followed by the first character of the construct.
  4235. \\<m2-mode-map>
  4236.   \\[m2-begin] begin         \\[m2-case] case
  4237.   \\[m2-definition] definition    \\[m2-else] else
  4238.   \\[m2-for] for           \\[m2-header] header
  4239.   \\[m2-if] if            \\[m2-module] module
  4240.   \\[m2-loop] loop          \\[m2-or] or
  4241.   \\[m2-procedure] procedure     Control-c Control-w with
  4242.   \\[m2-record] record        \\[m2-stdio] stdio
  4243.   \\[m2-type] type          \\[m2-until] until
  4244.   \\[m2-var] var           \\[m2-while] while
  4245.   \\[m2-export] export        \\[m2-import] import
  4246.   \\[m2-begin-comment] begin-comment \\[m2-end-comment] end-comment
  4247.   \\[suspend-emacs] suspend Emacs     \\[m2-toggle] toggle
  4248.   \\[m2-compile] compile           \\[m2-next-error] next-error
  4249.   \\[m2-link] link
  4250.  
  4251.    `m2-indent' controls the number of spaces for each indentation.
  4252.    `m2-compile-command' holds the command to compile a Modula-2 program.
  4253.    `m2-link-command' holds the command to link a Modula-2 program." t nil)
  4254.  
  4255. ;;;***
  4256.  
  4257. ;;;### (autoloads (mpuz) "mpuz" "mpuz.el" (11684 27378))
  4258. ;;; Generated autoloads from mpuz.el
  4259.  
  4260. (autoload (quote mpuz) "mpuz" "\
  4261. Multiplication puzzle with GNU Emacs." t nil)
  4262.  
  4263. ;;;***
  4264.  
  4265. ;;;### (autoloads (disable-command enable-command disabled-command-hook) "novice" "novice.el" (11712 1402))
  4266. ;;; Generated autoloads from novice.el
  4267.  
  4268. (setq disabled-command-hook (quote disabled-command-hook))
  4269.  
  4270. (autoload (quote disabled-command-hook) "novice" nil nil nil)
  4271.  
  4272. (autoload (quote enable-command) "novice" "\
  4273. Allow COMMAND to be executed without special confirmation from now on.
  4274. The user's .emacs file is altered so that this will apply
  4275. to future sessions." t nil)
  4276.  
  4277. (autoload (quote disable-command) "novice" "\
  4278. Require special confirmation to execute COMMAND from now on.
  4279. The user's .emacs file is altered so that this will apply
  4280. to future sessions." t nil)
  4281.  
  4282. ;;;***
  4283.  
  4284. ;;;### (autoloads (nroff-mode) "nroff-mode" "nroff-mode.el" (11664 43656))
  4285. ;;; Generated autoloads from nroff-mode.el
  4286.  
  4287. (autoload (quote nroff-mode) "nroff-mode" "\
  4288. Major mode for editing text intended for nroff to format.
  4289. \\{nroff-mode-map}
  4290. Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'.
  4291. Also, try `nroff-electric-mode', for automatically inserting
  4292. closing requests for requests that are used in matched pairs." t nil)
  4293.  
  4294. ;;;***
  4295.  
  4296. ;;;### (autoloads (edit-options list-options) "options" "options.el" (11181 53232))
  4297. ;;; Generated autoloads from options.el
  4298.  
  4299. (autoload (quote list-options) "options" "\
  4300. Display a list of Emacs user options, with values and documentation." t nil)
  4301.  
  4302. (autoload (quote edit-options) "options" "\
  4303. Edit a list of Emacs user option values.
  4304. Selects a buffer containing such a list,
  4305. in which there are commands to set the option values.
  4306. Type \\[describe-mode] in that buffer for a list of commands." t nil)
  4307.  
  4308. ;;;***
  4309.  
  4310. ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el" (11716 44973))
  4311. ;;; Generated autoloads from outline.el
  4312.  
  4313. (autoload (quote outline-mode) "outline" "\
  4314. Set major mode for editing outlines with selective display.
  4315. Headings are lines which start with asterisks: one for major headings,
  4316. two for subheadings, etc.  Lines not starting with asterisks are body lines. 
  4317.  
  4318. Body text or subheadings under a heading can be made temporarily
  4319. invisible, or visible again.  Invisible lines are attached to the end 
  4320. of the heading, so they move with it, if the line is killed and yanked
  4321. back.  A heading with text hidden under it is marked with an ellipsis (...).
  4322.  
  4323. Commands:\\<outline-mode-map>
  4324. \\[outline-next-visible-heading]   outline-next-visible-heading      move by visible headings
  4325. \\[outline-previous-visible-heading]   outline-previous-visible-heading
  4326. \\[outline-forward-same-level]   outline-forward-same-level        similar but skip subheadings
  4327. \\[outline-backward-same-level]   outline-backward-same-level
  4328. \\[outline-up-heading]   outline-up-heading            move from subheading to heading
  4329.  
  4330. \\[hide-body]    make all text invisible (not headings).
  4331. \\[show-all]    make everything in buffer visible.
  4332.  
  4333. The remaining commands are used when point is on a heading line.
  4334. They apply to some of the body or subheadings of that heading.
  4335. \\[hide-subtree]   hide-subtree    make body and subheadings invisible.
  4336. \\[show-subtree]   show-subtree    make body and subheadings visible.
  4337. \\[show-children]   show-children    make direct subheadings visible.
  4338.          No effect on body, or subheadings 2 or more levels down.
  4339.          With arg N, affects subheadings N levels down.
  4340. \\[hide-entry]       make immediately following body invisible.
  4341. \\[show-entry]       make it visible.
  4342. \\[hide-leaves]       make body under heading and under its subheadings invisible.
  4343.              The subheadings remain visible.
  4344. \\[show-branches]  make all subheadings at all levels visible.
  4345.  
  4346. The variable `outline-regexp' can be changed to control what is a heading.
  4347. A line is a heading if `outline-regexp' matches something at the
  4348. beginning of the line.  The longer the match, the deeper the level.
  4349.  
  4350. Turning on outline mode calls the value of `text-mode-hook' and then of
  4351. `outline-mode-hook', if they are non-nil." t nil)
  4352.  
  4353. (autoload (quote outline-minor-mode) "outline" "\
  4354. Toggle Outline minor mode.
  4355. With arg, turn Outline minor mode on if arg is positive, off otherwise.
  4356. See the command `outline-mode' for more information on this mode." t nil)
  4357.  
  4358. ;;;***
  4359.  
  4360. ;;;### (autoloads (pascal-mode) "pascal" "pascal.el" (11697 56567))
  4361. ;;; Generated autoloads from pascal.el
  4362.  
  4363. (autoload (quote pascal-mode) "pascal" "\
  4364. Major mode for editing Pascal code. \\<pascal-mode-map>
  4365. TAB indents for Pascal code.  Delete converts tabs to spaces as it moves back.
  4366.  
  4367. \\[pascal-complete-word] completes the word around current point with respect to position in code
  4368. \\[pascal-show-completions] shows all possible completions at this point.
  4369.  
  4370. Other useful functions are:
  4371.  
  4372. \\[pascal-mark-defun]    - Mark function.
  4373. \\[pascal-insert-block]    - insert begin ... end;
  4374. \\[pascal-star-comment]    - insert (* ... *)
  4375. \\[pascal-comment-area]    - Put marked area in a comment, fixing nested comments.
  4376. \\[pascal-uncomment-area]    - Uncomment an area commented with \\[pascal-comment-area].
  4377. \\[pascal-beg-of-defun]    - Move to beginning of current function.
  4378. \\[pascal-end-of-defun]    - Move to end of current function.
  4379. \\[pascal-goto-defun]    - Goto function prompted for in the minibuffer.
  4380. \\[pascal-outline]    - Enter pascal-outline-mode (see also pascal-outline).
  4381.  
  4382. Variables controlling indentation/edit style:
  4383.  
  4384.  pascal-indent-level      (default 3)
  4385.     Indentation of Pascal statements with respect to containing block.
  4386.  pascal-case-indent       (default 2)
  4387.     Indentation for case statements.
  4388.  pascal-auto-newline      (default nil)
  4389.     Non-nil means automatically newline after simcolons and the punctation mark
  4390.     after an end.
  4391.  pascal-tab-always-indent (defualt t)
  4392.     Non-nil means TAB in Pascal mode should always reindent the current line,
  4393.     regardless of where in the line point is when the TAB command is used.
  4394.  pascal-auto-endcomments  (default t)
  4395.     Non-nil means a comment { ... } is set after the ends which ends cases and
  4396.     functions. The name of the function or case will be set between the braces.
  4397.  
  4398. See also the user variables pascal-type-keywords, pascal-start-keywords and
  4399. pascal-separator-keywords.
  4400.  
  4401. Turning on Pascal mode calls the value of the variable pascal-mode-hook with
  4402. no args, if that value is non-nil." t nil)
  4403.  
  4404. ;;;***
  4405.  
  4406. ;;;### (autoloads (perl-mode) "perl-mode" "perl-mode.el" (11612 3300))
  4407. ;;; Generated autoloads from perl-mode.el
  4408.  
  4409. (autoload (quote perl-mode) "perl-mode" "\
  4410. Major mode for editing Perl code.
  4411. Expression and list commands understand all Perl brackets.
  4412. Tab indents for Perl code.
  4413. Comments are delimited with # ... \\n.
  4414. Paragraphs are separated by blank lines only.
  4415. Delete converts tabs to spaces as it moves back.
  4416. \\{perl-mode-map}
  4417. Variables controlling indentation style:
  4418.  perl-tab-always-indent
  4419.     Non-nil means TAB in Perl mode should always indent the current line,
  4420.     regardless of where in the line point is when the TAB command is used.
  4421.  perl-tab-to-comment
  4422.     Non-nil means that for lines which don't need indenting, TAB will
  4423.     either delete an empty comment, indent an existing comment, move 
  4424.     to end-of-line, or if at end-of-line already, create a new comment.
  4425.  perl-nochange
  4426.     Lines starting with this regular expression are not auto-indented.
  4427.  perl-indent-level
  4428.     Indentation of Perl statements within surrounding block.
  4429.     The surrounding block's indentation is the indentation
  4430.     of the line on which the open-brace appears.
  4431.  perl-continued-statement-offset
  4432.     Extra indentation given to a substatement, such as the
  4433.     then-clause of an if or body of a while.
  4434.  perl-continued-brace-offset
  4435.     Extra indentation given to a brace that starts a substatement.
  4436.     This is in addition to `perl-continued-statement-offset'.
  4437.  perl-brace-offset
  4438.     Extra indentation for line if it starts with an open brace.
  4439.  perl-brace-imaginary-offset
  4440.     An open brace following other text is treated as if it were
  4441.     this far to the right of the start of its line.
  4442.  perl-label-offset
  4443.     Extra indentation for line that is a label.
  4444.  
  4445. Various indentation styles:       K&R  BSD  BLK  GNU  LW
  4446.   perl-indent-level                5    8    0    2    4
  4447.   perl-continued-statement-offset  5    8    4    2    4
  4448.   perl-continued-brace-offset      0    0    0    0   -4
  4449.   perl-brace-offset               -5   -8    0    0    0
  4450.   perl-brace-imaginary-offset      0    0    4    0    0
  4451.   perl-label-offset               -5   -8   -2   -2   -2
  4452.  
  4453. Turning on Perl mode runs the normal hook `perl-mode-hook'." t nil)
  4454.  
  4455. ;;;***
  4456.  
  4457. ;;;### (autoloads (picture-mode) "picture" "picture.el" (11634 56834))
  4458. ;;; Generated autoloads from picture.el
  4459.  
  4460. (autoload (quote picture-mode) "picture" "\
  4461. Switch to Picture mode, in which a quarter-plane screen model is used.
  4462. Printing characters replace instead of inserting themselves with motion
  4463. afterwards settable by these commands:
  4464.   C-c <      Move left after insertion.
  4465.   C-c >      Move right after insertion.
  4466.   C-c ^      Move up after insertion.
  4467.   C-c .      Move down after insertion.
  4468.   C-c `      Move northwest (nw) after insertion.
  4469.   C-c '      Move northeast (ne) after insertion.
  4470.   C-c /      Move southwest (sw) after insertion.
  4471.   C-c \\   Move southeast (se) after insertion.
  4472. The current direction is displayed in the mode line.  The initial
  4473. direction is right.  Whitespace is inserted and tabs are changed to
  4474. spaces when required by movement.  You can move around in the buffer
  4475. with these commands:
  4476.   \\[picture-move-down]      Move vertically to SAME column in previous line.
  4477.   \\[picture-move-up]      Move vertically to SAME column in next line.
  4478.   \\[picture-end-of-line]      Move to column following last non-whitespace character.
  4479.   \\[picture-forward-column]      Move right inserting spaces if required.
  4480.   \\[picture-backward-column]      Move left changing tabs to spaces if required.
  4481.   C-c C-f Move in direction of current picture motion.
  4482.   C-c C-b Move in opposite direction of current picture motion.
  4483.   Return  Move to beginning of next line.
  4484. You can edit tabular text with these commands:
  4485.   M-Tab      Move to column beneath (or at) next interesting character.
  4486.         `Indents' relative to a previous line.
  4487.   Tab      Move to next stop in tab stop list.
  4488.   C-c Tab Set tab stops according to context of this line.
  4489.         With ARG resets tab stops to default (global) value.
  4490.         See also documentation of variable    picture-tab-chars
  4491.         which defines \"interesting character\".  You can manually
  4492.         change the tab stop list with command \\[edit-tab-stops].
  4493. You can manipulate text with these commands:
  4494.   C-d      Clear (replace) ARG columns after point without moving.
  4495.   C-c C-d Delete char at point - the command normally assigned to C-d.
  4496.   \\[picture-backward-clear-column]  Clear (replace) ARG columns before point, moving back over them.
  4497.   \\[picture-clear-line]      Clear ARG lines, advancing over them.     The cleared
  4498.         text is saved in the kill ring.
  4499.   \\[picture-open-line]      Open blank line(s) beneath current line.
  4500. You can manipulate rectangles with these commands:
  4501.   C-c C-k Clear (or kill) a rectangle and save it.
  4502.   C-c C-w Like C-c C-k except rectangle is saved in named register.
  4503.   C-c C-y Overlay (or insert) currently saved rectangle at point.
  4504.   C-c C-x Like C-c C-y except rectangle is taken from named register.
  4505.   \\[copy-rectangle-to-register]   Copies a rectangle to a register.
  4506.   \\[advertised-undo]   Can undo effects of rectangle overlay commands
  4507.         commands if invoked soon enough.
  4508. You can return to the previous mode with:
  4509.   C-c C-c Which also strips trailing whitespace from every line.
  4510.         Stripping is suppressed by supplying an argument.
  4511.  
  4512. Entry to this mode calls the value of  picture-mode-hook  if non-nil.
  4513.  
  4514. Note that Picture mode commands will work outside of Picture mode, but
  4515. they are not defaultly assigned to keys." t nil)
  4516.  
  4517. (defalias (quote edit-picture) (quote picture-mode))
  4518.  
  4519. ;;;***
  4520.  
  4521. ;;;### (autoloads (run-prolog prolog-mode) "prolog" "prolog.el" (11181 53308))
  4522. ;;; Generated autoloads from prolog.el
  4523.  
  4524. (autoload (quote prolog-mode) "prolog" "\
  4525. Major mode for editing Prolog code for Prologs.
  4526. Blank lines and `%%...' separate paragraphs.  `%'s start comments.
  4527. Commands:
  4528. \\{prolog-mode-map}
  4529. Entry to this mode calls the value of `prolog-mode-hook'
  4530. if that value is non-nil." t nil)
  4531.  
  4532. (autoload (quote run-prolog) "prolog" "\
  4533. Run an inferior Prolog process, input and output via buffer *prolog*." t nil)
  4534.  
  4535. ;;;***
  4536.  
  4537. ;;;### (autoloads (remote-compile) "rcompile" "rcompile.el" (11606 42334))
  4538. ;;; Generated autoloads from rcompile.el
  4539.  
  4540. (autoload (quote remote-compile) "rcompile" "\
  4541. Compile the the current buffer's directory on HOST.  Log in as USER.
  4542. See \\[compile]." t nil)
  4543.  
  4544. ;;;***
  4545.  
  4546. ;;;### (autoloads (clear-rectangle string-rectangle open-rectangle insert-rectangle yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle delete-rectangle) "rect" "rect.el" (11603 530))
  4547. ;;; Generated autoloads from rect.el
  4548.  
  4549. (autoload (quote delete-rectangle) "rect" "\
  4550. Delete (don't save) text in rectangle with point and mark as corners.
  4551. The same range of columns is deleted in each line starting with the line
  4552. where the region begins and ending with the line where the region ends." t nil)
  4553.  
  4554. (autoload (quote delete-extract-rectangle) "rect" "\
  4555. Delete contents of rectangle and return it as a list of strings.
  4556. Arguments START and END are the corners of the rectangle.
  4557. The value is list of strings, one for each line of the rectangle." nil nil)
  4558.  
  4559. (autoload (quote extract-rectangle) "rect" "\
  4560. Return contents of rectangle with corners at START and END.
  4561. Value is list of strings, one for each line of the rectangle." nil nil)
  4562.  
  4563. (autoload (quote kill-rectangle) "rect" "\
  4564. Delete rectangle with corners at point and mark; save as last killed one.
  4565. Calling from program, supply two args START and END, buffer positions.
  4566. But in programs you might prefer to use `delete-extract-rectangle'." t nil)
  4567.  
  4568. (autoload (quote yank-rectangle) "rect" "\
  4569. Yank the last killed rectangle with upper left corner at point." t nil)
  4570.  
  4571. (autoload (quote insert-rectangle) "rect" "\
  4572. Insert text of RECTANGLE with upper left corner at point.
  4573. RECTANGLE's first line is inserted at point, its second
  4574. line is inserted at a point vertically under point, etc.
  4575. RECTANGLE should be a list of strings.
  4576. After this command, the mark is at the upper left corner
  4577. and point is at the lower right corner." nil nil)
  4578.  
  4579. (autoload (quote open-rectangle) "rect" "\
  4580. Blank out rectangle with corners at point and mark, shifting text right.
  4581. The text previously in the region is not overwritten by the blanks,
  4582. but instead winds up to the right of the rectangle." t nil)
  4583.  
  4584. (autoload (quote string-rectangle) "rect" "\
  4585. Insert STRING on each line of the region-rectangle, shifting text right.
  4586. The left edge of the rectangle specifies the column for insertion.
  4587. This command does not delete or overwrite any existing text.
  4588.  
  4589. Called from a program, takes three args; START, END and STRING." t nil)
  4590.  
  4591. (autoload (quote clear-rectangle) "rect" "\
  4592. Blank out rectangle with corners at point and mark.
  4593. The text previously in the region is overwritten by the blanks.
  4594. When called from a program, requires two args which specify the corners." t nil)
  4595.  
  4596. ;;;***
  4597.  
  4598. ;;;### (autoloads (reporter-submit-bug-report) "reporter" "reporter.el" (11818 52911))
  4599. ;;; Generated autoloads from reporter.el
  4600.  
  4601. (autoload (quote reporter-submit-bug-report) "reporter" nil nil nil)
  4602.  
  4603. ;;;***
  4604.  
  4605. ;;;### (autoloads (reposition-window) "reposition" "reposition.el" (11545 5273))
  4606. ;;; Generated autoloads from reposition.el
  4607.  
  4608. (autoload (quote reposition-window) "reposition" "\
  4609. Make the current definition and/or comment visible.
  4610. Further invocations move it to the top of the window or toggle the
  4611. visibility of comments that precede it.
  4612.   Point is left unchanged unless prefix ARG is supplied.
  4613.   If the definition is fully onscreen, it is moved to the top of the
  4614. window.  If it is partly offscreen, the window is scrolled to get the
  4615. definition (or as much as will fit) onscreen, unless point is in a comment
  4616. which is also partly offscreen, in which case the scrolling attempts to get
  4617. as much of the comment onscreen as possible.
  4618.   Initially `reposition-window' attempts to make both the definition and
  4619. preceding comments visible.  Further invocations toggle the visibility of
  4620. the comment lines.
  4621.   If ARG is non-nil, point may move in order to make the whole defun
  4622. visible (if only part could otherwise be made so), to make the defun line
  4623. visible (if point is in code and it could not be made so, or if only
  4624. comments, including the first comment line, are visible), or to make the
  4625. first comment line visible (if point is in a comment)." t nil)
  4626. (define-key esc-map "\C-l" 'reposition-window)
  4627.  
  4628. ;;;***
  4629.  
  4630. ;;;### (autoloads (resume-suspend-hook) "resume" "resume.el" (11236 37830))
  4631. ;;; Generated autoloads from resume.el
  4632.  
  4633. (autoload (quote resume-suspend-hook) "resume" "\
  4634. Clear out the file used for transmitting args when Emacs resumes." nil nil)
  4635.  
  4636. ;;;***
  4637.  
  4638. ;;;### (autoloads (make-ring ring-p) "ring" "ring.el" (11367 8270))
  4639. ;;; Generated autoloads from ring.el
  4640.  
  4641. (autoload (quote ring-p) "ring" "\
  4642. Returns t if X is a ring; nil otherwise." nil nil)
  4643.  
  4644. (autoload (quote make-ring) "ring" "\
  4645. Make a ring that can contain SIZE elements." nil nil)
  4646.  
  4647. ;;;***
  4648.  
  4649. ;;;### (autoloads (rlogin) "rlogin" "rlogin.el" (11604 3082))
  4650. ;;; Generated autoloads from rlogin.el
  4651.  
  4652. (defvar rlogin-program "rlogin" "\
  4653. *Name of program to invoke rlogin")
  4654.  
  4655. (defvar rlogin-explicit-args nil "\
  4656. *List of arguments to pass to rlogin on the command line.")
  4657.  
  4658. (defvar rlogin-mode-hook nil "\
  4659. *Hooks to run after setting current buffer to rlogin-mode.")
  4660.  
  4661. (defvar rlogin-process-connection-type nil "\
  4662. *If non-`nil', use a pty for the local rlogin process.  
  4663. If `nil', use a pipe (if pipes are supported on the local system).  
  4664.  
  4665. Generally it is better not to waste ptys on systems which have a static
  4666. number of them.  On the other hand, some implementations of `rlogin' assume
  4667. a pty is being used, and errors will result from using a pipe instead.")
  4668.  
  4669. (defvar rlogin-initially-track-cwd t "\
  4670. *If non-`nil', do remote directory tracking via ange-ftp right away.
  4671. If `nil', you can still enable directory tracking by doing 
  4672. `M-x dirtrack-toggle'.")
  4673.  
  4674. (defvar rlogin-password-paranoia nil "\
  4675. *If non-`nil', query user for a password in the minibuffer when a Password: prompt appears.
  4676. It's also possible to selectively enter passwords without echoing them in
  4677. the minibuffer using the command `rlogin-password' explicitly.")
  4678.  
  4679. (autoload (quote rlogin) "rlogin" "\
  4680. Open a network login connection to HOST via the `rlogin' program.
  4681. Input is sent line-at-a-time to the remote connection.
  4682.  
  4683. Communication with the remote host is recorded in a buffer *rlogin-HOST*,
  4684. where HOST is the first word in the string ARGS.  If a prefix argument is
  4685. given and the buffer *rlogin-HOST* already exists, a new buffer with a
  4686. different connection will be made.
  4687.  
  4688. The variable `rlogin-program' contains the name of the actual program to
  4689. run.  It can be a relative or absolute path. 
  4690.  
  4691. The variable `rlogin-explicit-args' is a list of arguments to give to
  4692. the rlogin when starting.  They are added after any arguments given in ARGS." t nil)
  4693.  
  4694. ;;;***
  4695.  
  4696. ;;;### (autoloads (rmail-input rmail-mode rmail) "rmail" "rmail.el" (11882 25060))
  4697. ;;; Generated autoloads from rmail.el
  4698.  
  4699. (defvar rmail-dont-reply-to-names nil "\
  4700. *A regexp specifying names to prune of reply to messages.
  4701. A value of nil means exclude your own name only.")
  4702.  
  4703. (defvar rmail-default-dont-reply-to-names "info-" "\
  4704. A regular expression specifying part of the value of the default value of
  4705. the variable `rmail-dont-reply-to-names', for when the user does not set
  4706. `rmail-dont-reply-to-names' explicitly.  (The other part of the default
  4707. value is the user's name.)
  4708. It is useful to set this variable in the site customization file.")
  4709.  
  4710. (defvar rmail-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^received:\\|^x400-originator:\\|^x400-recipients:\\|^x400-received:\\|^x400-mts-identifier:\\|^x400-content-type:\\|^message-id:\\|^summary-line:" "\
  4711. *Regexp to match Header fields that Rmail should normally hide.")
  4712.  
  4713. (defvar rmail-highlighted-headers "^From:\\|^Subject:" "\
  4714. *Regexp to match Header fields that Rmail should normally highlight.
  4715. A value of nil means don't highlight.
  4716. See also `rmail-highlight-face'.")
  4717.  
  4718. (defvar rmail-highlight-face nil "\
  4719. *Face used by Rmail for highlighting headers.")
  4720.  
  4721. (defvar rmail-delete-after-output nil "\
  4722. *Non-nil means automatically delete a message that is copied to a file.")
  4723.  
  4724. (defvar rmail-primary-inbox-list nil "\
  4725. *List of files which are inboxes for user's primary mail file `~/RMAIL'.
  4726. `nil' means the default, which is (\"/usr/spool/mail/$USER\")
  4727. \(the name varies depending on the operating system,
  4728. and the value of the environment variable MAIL overrides it).")
  4729.  
  4730. (defvar rmail-mail-new-frame nil "\
  4731. *Non-nil means Rmail makes a new frame for composing outgoing mail.")
  4732.  
  4733. (defvar rmail-retry-setup-hook nil "\
  4734. Hook that `rmail-retry-failure' uses in place of `mail-setup-hook'.")
  4735.  
  4736. (defvar rmail-secondary-file-directory "~/" "\
  4737. *Directory for additional secondary Rmail files.")
  4738.  
  4739. (defvar rmail-secondary-file-regexp "\\.xmail$" "\
  4740. *Regexp for which files are secondary Rmail files.")
  4741.  
  4742. (autoload (quote rmail) "rmail" "\
  4743. Read and edit incoming mail.
  4744. Moves messages into file named by `rmail-file-name' (a babyl format file)
  4745.  and edits that file in RMAIL Mode.
  4746. Type \\[describe-mode] once editing that file, for a list of RMAIL commands.
  4747.  
  4748. May be called with file name as argument; then performs rmail editing on
  4749. that file, but does not copy any new mail into the file.
  4750. Interactively, if you supply a prefix argument, then you
  4751. have a chance to specify a file name with the minibuffer.
  4752.  
  4753. If `rmail-display-summary' is non-nil, make a summary for this RMAIL file." t nil)
  4754.  
  4755. (autoload (quote rmail-mode) "rmail" "\
  4756. Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files.
  4757. All normal editing commands are turned off.
  4758. Instead, these commands are available:
  4759.  
  4760. \\[rmail-beginning-of-message]    Move point to front of this message (same as \\[beginning-of-buffer]).
  4761. \\[scroll-up]    Scroll to next screen of this message.
  4762. \\[scroll-down]    Scroll to previous screen of this message.
  4763. \\[rmail-next-undeleted-message]    Move to Next non-deleted message.
  4764. \\[rmail-previous-undeleted-message]    Move to Previous non-deleted message.
  4765. \\[rmail-next-message]    Move to Next message whether deleted or not.
  4766. \\[rmail-previous-message]    Move to Previous message whether deleted or not.
  4767. \\[rmail-first-message]    Move to the first message in Rmail file.
  4768. \\[rmail-last-message]    Move to the last message in Rmail file.
  4769. \\[rmail-show-message]    Jump to message specified by numeric position in file.
  4770. \\[rmail-search]    Search for string and show message it is found in.
  4771. \\[rmail-delete-forward]    Delete this message, move to next nondeleted.
  4772. \\[rmail-delete-backward]    Delete this message, move to previous nondeleted.
  4773. \\[rmail-undelete-previous-message]    Undelete message.  Tries current message, then earlier messages
  4774.     till a deleted message is found.
  4775. \\[rmail-edit-current-message]    Edit the current message.  \\[rmail-cease-edit] to return to Rmail.
  4776. \\[rmail-expunge]    Expunge deleted messages.
  4777. \\[rmail-expunge-and-save]    Expunge and save the file.
  4778. \\[rmail-quit]       Quit Rmail: expunge, save, then switch to another buffer.
  4779. \\[save-buffer] Save without expunging.
  4780. \\[rmail-get-new-mail]    Move new mail from system spool directory into this file.
  4781. \\[rmail-mail]    Mail a message (same as \\[mail-other-window]).
  4782. \\[rmail-continue]    Continue composing outgoing message started before.
  4783. \\[rmail-reply]    Reply to this message.  Like \\[rmail-mail] but initializes some fields.
  4784. \\[rmail-retry-failure]    Send this message again.  Used on a mailer failure message.
  4785. \\[rmail-forward]    Forward this message to another user.
  4786. \\[rmail-output-to-rmail-file]       Output this message to an Rmail file (append it).
  4787. \\[rmail-output]    Output this message to a Unix-format mail file (append it).
  4788. \\[rmail-input]    Input Rmail file.  Run Rmail on that file.
  4789. \\[rmail-add-label]    Add label to message.  It will be displayed in the mode line.
  4790. \\[rmail-kill-label]    Kill label.  Remove a label from current message.
  4791. \\[rmail-next-labeled-message]   Move to Next message with specified label
  4792.           (label defaults to last one specified).
  4793.           Standard labels: filed, unseen, answered, forwarded, deleted.
  4794.           Any other label is present only if you add it with \\[rmail-add-label].
  4795. \\[rmail-previous-labeled-message]   Move to Previous message with specified label
  4796. \\[rmail-summary]    Show headers buffer, with a one line summary of each message.
  4797. \\[rmail-summary-by-labels]    Summarize only messages with particular label(s).
  4798. \\[rmail-summary-by-recipients]   Summarize only messages with particular recipient(s).
  4799. \\[rmail-summary-by-regexp]   Summarize only messages with particular regexp(s).
  4800. \\[rmail-summary-by-topic]   Summarize only messages with subject line regexp(s).
  4801. \\[rmail-toggle-header]    Toggle display of complete header." t nil)
  4802.  
  4803. (autoload (quote rmail-input) "rmail" "\
  4804. Run Rmail on file FILENAME." t nil)
  4805.  
  4806. ;;;***
  4807.  
  4808. ;;;### (autoloads (rmail-file-p) "rmailout" "rmailout.el" (11693 36319))
  4809. ;;; Generated autoloads from rmailout.el
  4810.  
  4811. (autoload (quote rmail-file-p) "rmailout" nil nil nil)
  4812.  
  4813. ;;;***
  4814.  
  4815. ;;;### (autoloads (toggle-rot13-mode rot13-other-window) "rot13" "rot13.el" (11869 10108))
  4816. ;;; Generated autoloads from rot13.el
  4817.  
  4818. (autoload (quote rot13-other-window) "rot13" "\
  4819. Display current buffer in rot 13 in another window.
  4820. To terminate the rot13 display, delete that window." t nil)
  4821.  
  4822. (autoload (quote toggle-rot13-mode) "rot13" "\
  4823. Toggle the use of rot 13 encoding for the current window." t nil)
  4824.  
  4825. ;;;***
  4826.  
  4827. ;;;### (autoloads (resize-minibuffer-mode) "rsz-mini" "rsz-mini.el" (11812 8733))
  4828. ;;; Generated autoloads from rsz-mini.el
  4829.  
  4830. (defvar resize-minibuffer-mode nil "\
  4831. *If non-`nil', resize the minibuffer so its entire contents are visible.")
  4832.  
  4833. (defvar resize-minibuffer-window-max-height nil "\
  4834. *Maximum size the minibuffer window is allowed to become.
  4835. If less than 1 or not a number, the limit is the height of the frame in
  4836. which the active minibuffer window resides.")
  4837.  
  4838. (defvar resize-minibuffer-window-exactly t "\
  4839. *Allow making minibuffer exactly the size to display all its contents.
  4840. If `nil', the minibuffer window can temporarily increase in size but
  4841. never get smaller while it is active.  Any other value allows exact
  4842. resizing.")
  4843.  
  4844. (defvar resize-minibuffer-frame nil "\
  4845. *Allow changing the frame height of minibuffer frames.
  4846. If non-`nil' and the active minibuffer is the sole window in its frame,
  4847. allow changing the frame height.")
  4848.  
  4849. (defvar resize-minibuffer-frame-max-height nil "\
  4850. *Maximum size the minibuffer frame is allowed to become.
  4851. If less than 1 or not a number, there is no limit.")
  4852.  
  4853. (defvar resize-minibuffer-frame-exactly t "\
  4854. *Allow making minibuffer frame exactly the size to display all its contents.
  4855. If `nil', the minibuffer frame can temporarily increase in size but
  4856. never get smaller while it is active.  Any other value allows exact
  4857. resizing.")
  4858.  
  4859. (autoload (quote resize-minibuffer-mode) "rsz-mini" "\
  4860. Enable or disable resize-minibuffer mode.
  4861. A negative prefix argument disables this mode.  A positive argument or
  4862. argument of 0 enables it.
  4863.  
  4864. When this minor mode is enabled, the minibuffer is dynamically resized to
  4865. contain the entire region of text put in it as you type.
  4866.  
  4867. The variable `resize-minibuffer-mode' is set to t or nil depending on
  4868. whether this mode is active or not.
  4869.  
  4870. The maximum height to which the minibuffer can grow is controlled by the
  4871. variable `resize-minibuffer-window-max-height'.
  4872.  
  4873. The variable `resize-minibuffer-window-exactly' determines whether the
  4874. minibuffer window should ever be shrunk to make it no larger than needed to
  4875. display its contents.
  4876.  
  4877. When using a window system, it is possible for a minibuffer to be the sole
  4878. window in a frame.  Since that window is already its maximum size, the only
  4879. way to make more text visible at once is to increase the size of the frame.
  4880. The variable `resize-minibuffer-frame' controls whether this should be
  4881. done.  The variables `resize-minibuffer-frame-max-height' and
  4882. `resize-minibuffer-frame-exactly' are analogous to their window
  4883. counterparts." t nil)
  4884.  
  4885. ;;;***
  4886.  
  4887. ;;;### (autoloads (scheme-mode) "scheme" "scheme.el" (11649 6351))
  4888. ;;; Generated autoloads from scheme.el
  4889.  
  4890. (autoload (quote scheme-mode) "scheme" "\
  4891. Major mode for editing Scheme code.
  4892. Editing commands are similar to those of lisp-mode.
  4893.  
  4894. In addition, if an inferior Scheme process is running, some additional
  4895. commands will be defined, for evaluating expressions and controlling
  4896. the interpreter, and the state of the process will be displayed in the
  4897. modeline of all Scheme buffers.  The names of commands that interact
  4898. with the Scheme process start with \"xscheme-\".  For more information
  4899. see the documentation for xscheme-interaction-mode.
  4900.  
  4901. Commands:
  4902. Delete converts tabs to spaces as it moves back.
  4903. Blank lines separate paragraphs.  Semicolons start comments.
  4904. \\{scheme-mode-map}
  4905. Entry to this mode calls the value of scheme-mode-hook
  4906. if that value is non-nil." t nil)
  4907.  
  4908. ;;;***
  4909.  
  4910. ;;;### (autoloads (scribe-mode) "scribe" "scribe.el" (11185 15625))
  4911. ;;; Generated autoloads from scribe.el
  4912.  
  4913. (autoload (quote scribe-mode) "scribe" "\
  4914. Major mode for editing files of Scribe (a text formatter) source.
  4915. Scribe-mode is similar text-mode, with a few extra commands added.
  4916. \\{scribe-mode-map}
  4917.  
  4918. Interesting variables:
  4919.  
  4920. scribe-fancy-paragraphs
  4921.   Non-nil makes Scribe mode use a different style of paragraph separation.
  4922.  
  4923. scribe-electric-quote
  4924.   Non-nil makes insert of double quote use `` or '' depending on context.
  4925.  
  4926. scribe-electric-parenthesis
  4927.   Non-nil makes an open-parenthesis char (one of `([<{')
  4928.   automatically insert its close if typed after an @Command form." t nil)
  4929.  
  4930. ;;;***
  4931.  
  4932. ;;;### (autoloads (mail-other-frame mail-other-window mail mail-mode) "sendmail" "sendmail.el" (11846 48695))
  4933. ;;; Generated autoloads from sendmail.el
  4934.  
  4935. (defvar mail-self-blind nil "\
  4936. Non-nil means insert BCC to self in messages to be sent.
  4937. This is done when the message is initialized,
  4938. so you can remove or alter the BCC field to override the default.")
  4939.  
  4940. (defvar mail-interactive nil "\
  4941. Non-nil means when sending a message wait for and display errors.
  4942. nil means let mailer mail back a message to report errors.")
  4943.  
  4944. (defvar mail-yank-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^remailed\\|^received:\\|^message-id:\\|^summary-line:\\|^to:\\|^subject:\\|^in-reply-to:\\|^return-path:" "\
  4945. Delete these headers from old message when it's inserted in a reply.")
  4946.  
  4947. (defvar send-mail-function (quote sendmail-send-it) "\
  4948. Function to call to send the current buffer as mail.
  4949. The headers are be delimited by a line which is `mail-header-separator'.")
  4950.  
  4951. (defvar mail-header-separator "--text follows this line--" "\
  4952. *Line used to separate headers from text in messages being composed.")
  4953.  
  4954. (defvar mail-archive-file-name nil "\
  4955. *Name of file to write all outgoing messages in, or nil for none.
  4956. Do not use an rmail file here!  Instead, use its inbox file.")
  4957.  
  4958. (defvar mail-default-reply-to nil "\
  4959. *Address to insert as default Reply-to field of outgoing messages.")
  4960.  
  4961. (defvar mail-alias-file nil "\
  4962. *If non-nil, the name of a file to use instead of `/usr/lib/aliases'.
  4963. This file defines aliases to be expanded by the mailer; this is a different
  4964. feature from that of defining aliases in `.mailrc' to be expanded in Emacs.
  4965. This variable has no effect unless your system uses sendmail as its mailer.")
  4966.  
  4967. (defvar mail-signature nil "\
  4968. *Text inserted at end of mail buffer when a message is initialized.
  4969. If t, it means to insert the contents of the file `~/.signature'.")
  4970.  
  4971. (autoload (quote mail-mode) "sendmail" "\
  4972. Major mode for editing mail to be sent.
  4973. Like Text Mode but with these additional commands:
  4974. C-c C-s  mail-send (send the message)    C-c C-c  mail-send-and-exit
  4975. C-c C-f  move to a header field (and create it if there isn't):
  4976.      C-c C-f C-t  move to To:    C-c C-f C-s  move to Subj:
  4977.      C-c C-f C-b  move to BCC:    C-c C-f C-c  move to CC:
  4978.      C-c C-f C-f  move to FCC:
  4979. C-c C-t  move to message text.
  4980. C-c C-y  mail-yank-original (insert current message, in Rmail).
  4981. C-c C-q  mail-fill-yanked-message (fill what was yanked).
  4982. C-c C-v  mail-sent-via (add a sent-via field for each To or CC)." t nil)
  4983.  
  4984. (autoload (quote mail) "sendmail" "\
  4985. Edit a message to be sent.  Prefix arg means resume editing (don't erase).
  4986. When this function returns, the buffer `*mail*' is selected.
  4987. The value is t if the message was newly initialized; otherwise, nil.
  4988.  
  4989. By default, the signature file `~/.signature' is inserted at the end;
  4990. see the variable `mail-signature'.
  4991.  
  4992. \\<mail-mode-map>
  4993. While editing message, type \\[mail-send-and-exit] to send the message and exit.
  4994.  
  4995. Various special commands starting with C-c are available in sendmail mode
  4996. to move to message header fields:
  4997. \\{mail-mode-map}
  4998.  
  4999. If `mail-self-blind' is non-nil, a BCC to yourself is inserted
  5000. when the message is initialized.
  5001.  
  5002. If `mail-default-reply-to' is non-nil, it should be an address (a string);
  5003. a Reply-to: field with that address is inserted.
  5004.  
  5005. If `mail-archive-file-name' is non-nil, an FCC field with that file name
  5006. is inserted.
  5007.  
  5008. If `mail-setup-hook' is bound, its value is called with no arguments
  5009. after the message is initialized.  It can add more default fields.
  5010.  
  5011. When calling from a program, the second through fifth arguments
  5012.  TO, SUBJECT, IN-REPLY-TO and CC specify if non-nil
  5013.  the initial contents of those header fields.
  5014.  These arguments should not have final newlines.
  5015. The sixth argument REPLYBUFFER is a buffer whose contents
  5016.  should be yanked if the user types C-c C-y.
  5017. The seventh argument ACTIONS is a list of actions to take
  5018.  if/when the message is sent.  Each action looks like (FUNCTION . ARGS);
  5019.  when the message is sent, we apply FUNCTION to ARGS.
  5020.  This is how Rmail arranges to mark messages `answered'." t nil)
  5021.  
  5022. (autoload (quote mail-other-window) "sendmail" "\
  5023. Like `mail' command, but display mail buffer in another window." t nil)
  5024.  
  5025. (autoload (quote mail-other-frame) "sendmail" "\
  5026. Like `mail' command, but display mail buffer in another frame." t nil)
  5027. (define-key ctl-x-map "m" 'mail)
  5028. (define-key ctl-x-4-map "m" 'mail-other-window)
  5029. (define-key ctl-x-5-map "m" 'mail-other-frame)
  5030.  
  5031. ;;;***
  5032.  
  5033. ;;;### (autoloads (server-start) "server" "server.el" (11701 36840))
  5034. ;;; Generated autoloads from server.el
  5035.  
  5036. (autoload (quote server-start) "server" "\
  5037. Allow this Emacs process to be a server for client processes.
  5038. This starts a server communications subprocess through which
  5039. client \"editors\" can send your editing commands to this Emacs job.
  5040. To use the server, set up the program `etc/emacsclient' in the
  5041. Emacs distribution as your standard \"editor\".
  5042.  
  5043. Prefix arg means just kill any existing server communications subprocess." t nil)
  5044.  
  5045. ;;;***
  5046.  
  5047. ;;;### (autoloads (sgml-mode) "sgml-mode" "sgml-mode.el" (11274 32251))
  5048. ;;; Generated autoloads from sgml-mode.el
  5049.  
  5050. (autoload (quote sgml-mode) "sgml-mode" "\
  5051. Major mode for editing SGML.
  5052. Makes > display the matching <.  Makes / display matching /.
  5053. Use \\[sgml-validate] to validate your document with an SGML parser." t nil)
  5054.  
  5055. ;;;***
  5056.  
  5057. ;;;### (autoloads (shell) "shell" "shell.el" (11706 20173))
  5058. ;;; Generated autoloads from shell.el
  5059.  
  5060. (defvar shell-prompt-pattern "^[^#$%>\n]*[#$%>] *" "\
  5061. Regexp to match prompts in the inferior shell.
  5062. Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well.
  5063. This variable is used to initialise `comint-prompt-regexp' in the 
  5064. shell buffer.
  5065.  
  5066. The pattern should probably not match more than one line.  If it does,
  5067. shell-mode may become confused trying to distinguish prompt from input
  5068. on lines which don't start with a prompt.
  5069.  
  5070. This is a fine thing to set in your `.emacs' file.")
  5071.  
  5072. (autoload (quote shell) "shell" "\
  5073. Run an inferior shell, with I/O through buffer *shell*.
  5074. If buffer exists but shell process is not running, make new shell.
  5075. If buffer exists and shell process is running, just switch to buffer `*shell*'.
  5076. Program used comes from variable `explicit-shell-file-name',
  5077.  or (if that is nil) from the ESHELL environment variable,
  5078.  or else from SHELL if there is no ESHELL.
  5079. If a file `~/.emacs_SHELLNAME' exists, it is given as initial input
  5080.  (Note that this may lose due to a timing error if the shell
  5081.   discards input when it starts up.)
  5082. The buffer is put in Shell mode, giving commands for sending input
  5083. and controlling the subjobs of the shell.  See `shell-mode'.
  5084. See also the variable `shell-prompt-pattern'.
  5085.  
  5086. The shell file name (sans directories) is used to make a symbol name
  5087. such as `explicit-csh-args'.  If that symbol is a variable,
  5088. its value is used as a list of arguments when invoking the shell.
  5089. Otherwise, one argument `-i' is passed to the shell.
  5090.  
  5091. \(Type \\[describe-mode] in the shell buffer for a list of commands.)" t nil)
  5092.  
  5093. ;;;***
  5094.  
  5095. (autoload (quote define-skeleton) "skeleton" "\
  5096. Define a user-configurable COMMAND that enters a statement skeleton.
  5097. DOCUMENTATION is that of the command, while the variable of the same name,
  5098. which contains the definition, has a documentation to that effect.
  5099. PROMPT and ELEMENT ... are as defined under `skeleton-insert'." nil (quote macro))
  5100.  
  5101. (autoload (quote skeleton-insert) "skeleton" "\
  5102. Insert the complex statement skeleton DEFINITION describes very concisely.
  5103. If optional NO-NEWLINE is nil the skeleton will end on a line of its own.
  5104.  
  5105. DEFINITION is made up as (PROMPT ELEMENT ...).  PROMPT may be nil if not
  5106. needed, a prompt-string or an expression for complex read functions.
  5107.  
  5108. If ELEMENT is a string or a character it gets inserted (see also
  5109. `skeleton-transformation').  Other possibilities are:
  5110.  
  5111.     \\n    go to next line and align cursor
  5112.     >    indent according to major mode
  5113.     <    undent tab-width spaces but not beyond beginning of line
  5114.     _    cursor after termination
  5115.     &    skip next ELEMENT if previous didn't move point
  5116.     |    skip next ELEMENT if previous moved point
  5117.     -num    delete num preceding characters
  5118.     resume:    skipped, continue here if quit is signaled
  5119.     nil    skipped
  5120.  
  5121. ELEMENT may itself be DEFINITION with a PROMPT.  The user is prompted
  5122. repeatedly for different inputs.  The DEFINITION is processed as often
  5123. as the user enters a non-empty string.  \\[keyboard-quit] terminates
  5124. skeleton insertion, but continues after `resume:' and positions at `_'
  5125. if any.  If PROMPT in such a sub-definition contains a \".. %s ..\" it
  5126. is replaced by `skeleton-subprompt'.
  5127.  
  5128. Other lisp-expressions are evaluated and the value treated as above.
  5129. The following local variables are available:
  5130.  
  5131.     str    first time: read a string prompting with PROMPT and insert it
  5132.                 if PROMPT is not a string it is evaluated instead
  5133.         then: insert previously read string once more
  5134.     quit    non-nil when resume: section is entered by keyboard quit
  5135.     v1, v2    local variables for memorising anything you want" nil nil)
  5136.  
  5137. (autoload (quote pair-insert-maybe) "skeleton" "\
  5138. Insert the character you type ARG times.
  5139.  
  5140. With no ARG, if `pair' is non-nil, and if
  5141. `pair-on-word' is non-nil or we are not before or inside a
  5142. word, and if `pair-filter' returns nil, pairing is performed.
  5143.  
  5144. If a match is found in `pair-alist', that is inserted, else
  5145. the defaults are used.  These are (), [], {}, <> and `' for the
  5146. symmetrical ones, and the same character twice for the others." t nil)
  5147.  
  5148. ;;;### (autoloads (pair-insert-maybe skeleton-insert define-skeleton) "skeleton" "skeleton.el" (11723 10068))
  5149. ;;; Generated autoloads from skeleton.el
  5150.  
  5151. (autoload (quote define-skeleton) "skeleton" "\
  5152. Define a user-configurable COMMAND that enters a statement skeleton.
  5153. DOCUMENTATION is that of the command, while the variable of the same name,
  5154. which contains the definition, has a documentation to that effect.
  5155. PROMPT and ELEMENT ... are as defined under `skeleton-insert'." nil (quote macro))
  5156.  
  5157. (autoload (quote skeleton-insert) "skeleton" "\
  5158. Insert the complex statement skeleton DEFINITION describes very concisely.
  5159. If optional NO-NEWLINE is nil the skeleton will end on a line of its own.
  5160.  
  5161. DEFINITION is made up as (PROMPT ELEMENT ...).  PROMPT may be nil if not
  5162. needed, a prompt-string or an expression for complex read functions.
  5163.  
  5164. If ELEMENT is a string or a character it gets inserted (see also
  5165. `skeleton-transformation').  Other possibilities are:
  5166.  
  5167.     \\n    go to next line and align cursor
  5168.     >    indent according to major mode
  5169.     <    undent tab-width spaces but not beyond beginning of line
  5170.     _    cursor after termination
  5171.     &    skip next ELEMENT if previous didn't move point
  5172.     |    skip next ELEMENT if previous moved point
  5173.     -num    delete num preceding characters
  5174.     resume:    skipped, continue here if quit is signaled
  5175.     nil    skipped
  5176.  
  5177. ELEMENT may itself be DEFINITION with a PROMPT.  The user is prompted
  5178. repeatedly for different inputs.  The DEFINITION is processed as often
  5179. as the user enters a non-empty string.  \\[keyboard-quit] terminates
  5180. skeleton insertion, but continues after `resume:' and positions at `_'
  5181. if any.  If PROMPT in such a sub-definition contains a \".. %s ..\" it
  5182. is replaced by `skeleton-subprompt'.
  5183.  
  5184. Other lisp-expressions are evaluated and the value treated as above.
  5185. The following local variables are available:
  5186.  
  5187.     str    first time: read a string prompting with PROMPT and insert it
  5188.                 if PROMPT is not a string it is evaluated instead
  5189.         then: insert previously read string once more
  5190.     quit    non-nil when resume: section is entered by keyboard quit
  5191.     v1, v2    local variables for memorising anything you want" nil nil)
  5192.  
  5193. (autoload (quote pair-insert-maybe) "skeleton" "\
  5194. Insert the character you type ARG times.
  5195.  
  5196. With no ARG, if `pair' is non-nil, and if
  5197. `pair-on-word' is non-nil or we are not before or inside a
  5198. word, and if `pair-filter' returns nil, pairing is performed.
  5199.  
  5200. If a match is found in `pair-alist', that is inserted, else
  5201. the defaults are used.  These are (), [], {}, <> and `' for the
  5202. symmetrical ones, and the same character twice for the others." t nil)
  5203.  
  5204. ;;;***
  5205.  
  5206. ;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset) "solar" "solar.el" (11759 36780))
  5207. ;;; Generated autoloads from solar.el
  5208.  
  5209. (defvar calendar-time-display-form (quote (12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")"))) "\
  5210. *The pseudo-pattern that governs the way a time of day is formatted.
  5211.  
  5212. A pseudo-pattern is a list of expressions that can involve the keywords
  5213. `12-hours', `24-hours', and `minutes',  all numbers in string form,
  5214. and `am-pm' and `time-zone',  both alphabetic strings.
  5215.  
  5216. For example, the form
  5217.  
  5218.   '(24-hours \":\" minutes
  5219.     (if time-zone \" (\") time-zone (if time-zone \")\"))
  5220.  
  5221. would give military-style times like `21:07 (UTC)'.")
  5222.  
  5223. (defvar calendar-latitude nil "\
  5224. *Latitude of `calendar-location-name' in degrees, + north, - south.
  5225. For example, 40.7 for New York City.
  5226. It may not be a good idea to set this in advance for your site;
  5227. if there may be users running Emacs at your site
  5228. who are physically located elsewhere, they would get the wrong
  5229. value and might not know how to override it.")
  5230.  
  5231. (defvar calendar-longitude nil "\
  5232. *Longitude of `calendar-location-name' in degrees, + east, - west.
  5233. For example, -74.0 for New York City.
  5234. It may not be a good idea to set this in advance for your site;
  5235. if there may be users running Emacs at your site
  5236. who are physically located elsewhere, they would get the wrong
  5237. value and might not know how to override it.")
  5238.  
  5239. (defvar calendar-location-name (quote (let ((float-output-format "%.1f")) (format "%s%s, %s%s" (abs calendar-latitude) (if (> calendar-latitude 0) "N" "S") (abs calendar-longitude) (if (> calendar-longitude 0) "E" "W")))) "\
  5240. *Expression evaluating to name of `calendar-longitude', calendar-latitude'.
  5241. Default value is just the latitude, longitude pair.")
  5242.  
  5243. (autoload (quote sunrise-sunset) "solar" "\
  5244. Local time of sunrise and sunset for today.  Accurate to +/- 2 minutes.
  5245. If called with an optional prefix argument, prompt for date.
  5246.  
  5247. If called with an optional double prefix argument, prompt for longitude,
  5248. latitude, time zone, and date, and always use standard time.
  5249.  
  5250. This function is suitable for execution in a .emacs file." t nil)
  5251.  
  5252. (autoload (quote solar-equinoxes-solstices) "solar" "\
  5253. Date and time of equinoxes and solstices, if visible in the calendar window.
  5254. Requires floating point." nil nil)
  5255.  
  5256. ;;;***
  5257.  
  5258. ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields sort-fields sort-numeric-fields sort-pages sort-paragraphs sort-lines sort-subr) "sort" "sort.el" (11701 35009))
  5259. ;;; Generated autoloads from sort.el
  5260.  
  5261. (autoload (quote sort-subr) "sort" "\
  5262. General text sorting routine to divide buffer into records and sort them.
  5263. Arguments are REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN.
  5264.  
  5265. We divide the accessible portion of the buffer into disjoint pieces
  5266. called sort records.  A portion of each sort record (perhaps all of
  5267. it) is designated as the sort key.  The records are rearranged in the
  5268. buffer in order by their sort keys.  The records may or may not be
  5269. contiguous.
  5270.  
  5271. Usually the records are rearranged in order of ascending sort key.
  5272. If REVERSE is non-nil, they are rearranged in order of descending sort key.
  5273.  
  5274. The next four arguments are functions to be called to move point
  5275. across a sort record.  They will be called many times from within sort-subr.
  5276.  
  5277. NEXTRECFUN is called with point at the end of the previous record.
  5278. It moves point to the start of the next record.
  5279. It should move point to the end of the buffer if there are no more records.
  5280. The first record is assumed to start at the position of point when sort-subr
  5281. is called.
  5282.  
  5283. ENDRECFUN is called with point within the record.
  5284. It should move point to the end of the record.
  5285.  
  5286. STARTKEYFUN moves from the start of the record to the start of the key.
  5287. It may return either a non-nil value to be used as the key, or
  5288. else the key is the substring between the values of point after
  5289. STARTKEYFUN and ENDKEYFUN are called.  If STARTKEYFUN is nil, the key
  5290. starts at the beginning of the record.
  5291.  
  5292. ENDKEYFUN moves from the start of the sort key to the end of the sort key.
  5293. ENDKEYFUN may be nil if STARTKEYFUN returns a value or if it would be the
  5294. same as ENDRECFUN." nil nil)
  5295.  
  5296. (autoload (quote sort-lines) "sort" "\
  5297. Sort lines in region alphabetically; argument means descending order.
  5298. Called from a program, there are three arguments:
  5299. REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
  5300.  
  5301. (autoload (quote sort-paragraphs) "sort" "\
  5302. Sort paragraphs in region alphabetically; argument means descending order.
  5303. Called from a program, there are three arguments:
  5304. REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
  5305.  
  5306. (autoload (quote sort-pages) "sort" "\
  5307. Sort pages in region alphabetically; argument means descending order.
  5308. Called from a program, there are three arguments:
  5309. REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
  5310.  
  5311. (autoload (quote sort-numeric-fields) "sort" "\
  5312. Sort lines in region numerically by the ARGth field of each line.
  5313. Fields are separated by whitespace and numbered from 1 up.
  5314. Specified field must contain a number in each line of the region.
  5315. With a negative arg, sorts by the ARGth field counted from the right.
  5316. Called from a program, there are three arguments:
  5317. FIELD, BEG and END.  BEG and END specify region to sort." t nil)
  5318.  
  5319. (autoload (quote sort-fields) "sort" "\
  5320. Sort lines in region lexicographically by the ARGth field of each line.
  5321. Fields are separated by whitespace and numbered from 1 up.
  5322. With a negative arg, sorts by the ARGth field counted from the right.
  5323. Called from a program, there are three arguments:
  5324. FIELD, BEG and END.  BEG and END specify region to sort." t nil)
  5325.  
  5326. (autoload (quote sort-regexp-fields) "sort" "\
  5327. Sort the region lexicographically as specified by RECORD-REGEXP and KEY.
  5328. RECORD-REGEXP specifies the textual units which should be sorted.
  5329.   For example, to sort lines RECORD-REGEXP would be \"^.*$\"
  5330. KEY specifies the part of each record (ie each match for RECORD-REGEXP)
  5331.   is to be used for sorting.
  5332.   If it is \"\\digit\" then the digit'th \"\\(...\\)\" match field from
  5333.   RECORD-REGEXP is used.
  5334.   If it is \"\\&\" then the whole record is used.
  5335.   Otherwise, it is a regular-expression for which to search within the record.
  5336. If a match for KEY is not found within a record then that record is ignored.
  5337.  
  5338. With a negative prefix arg sorts in reverse order.
  5339.  
  5340. For example: to sort lines in the region by the first word on each line
  5341.  starting with the letter \"f\",
  5342.  RECORD-REGEXP would be \"^.*$\" and KEY would be \"\\=\\<f\\w*\\>\"" t nil)
  5343.  
  5344. (autoload (quote sort-columns) "sort" "\
  5345. Sort lines in region alphabetically by a certain range of columns.
  5346. For the purpose of this command, the region includes
  5347. the entire line that point is in and the entire line the mark is in.
  5348. The column positions of point and mark bound the range of columns to sort on.
  5349. A prefix argument means sort into reverse order.
  5350.  
  5351. Note that `sort-columns' rejects text that contains tabs,
  5352. because tabs could be split across the specified columns
  5353. and it doesn't know how to handle that.  Also, when possible,
  5354. it uses the `sort' utility program, which doesn't understand tabs.
  5355. Use \\[untabify] to convert tabs to spaces before sorting." t nil)
  5356.  
  5357. (autoload (quote reverse-region) "sort" "\
  5358. Reverse the order of lines in a region.
  5359. From a program takes two point or marker arguments, BEG and END." t nil)
  5360.  
  5361. ;;;***
  5362.  
  5363. ;;;### (autoloads (spell-string spell-region spell-word spell-buffer) "spell" "spell.el" (11285 51501))
  5364. ;;; Generated autoloads from spell.el
  5365.  
  5366. (autoload (quote spell-buffer) "spell" "\
  5367. Check spelling of every word in the buffer.
  5368. For each incorrect word, you are asked for the correct spelling
  5369. and then put into a query-replace to fix some or all occurrences.
  5370. If you do not want to change a word, just give the same word
  5371. as its \"correct\" spelling; then the query replace is skipped." t nil)
  5372.  
  5373. (autoload (quote spell-word) "spell" "\
  5374. Check spelling of word at or before point.
  5375. If it is not correct, ask user for the correct spelling
  5376. and `query-replace' the entire buffer to substitute it." t nil)
  5377.  
  5378. (autoload (quote spell-region) "spell" "\
  5379. Like `spell-buffer' but applies only to region.
  5380. Used in a program, applies from START to END.
  5381. DESCRIPTION is an optional string naming the unit being checked:
  5382. for example, \"word\"." t nil)
  5383.  
  5384. (autoload (quote spell-string) "spell" "\
  5385. Check spelling of string supplied as argument." t nil)
  5386.  
  5387. ;;;***
  5388.  
  5389. ;;;### (autoloads (snarf-spooks spook) "spook" "spook.el" (11332 39077))
  5390. ;;; Generated autoloads from spook.el
  5391.  
  5392. (autoload (quote spook) "spook" "\
  5393. Adds that special touch of class to your outgoing mail." t nil)
  5394.  
  5395. (autoload (quote snarf-spooks) "spook" "\
  5396. Return a vector containing the lines from `spook-phrases-file'." nil nil)
  5397.  
  5398. ;;;***
  5399.  
  5400. ;;;### (autoloads (sc-cite-original) "supercite" "supercite.el" (11722 56897))
  5401. ;;; Generated autoloads from supercite.el
  5402.  
  5403. (autoload (quote sc-cite-original) "supercite" "\
  5404. Workhorse citing function which performs the initial citation.
  5405. This is callable from the various mail and news readers' reply
  5406. function according to the agreed upon standard.  See `\\[sc-describe]'
  5407. for more details.  `sc-cite-original' does not do any yanking of the
  5408. original message but it does require a few things:
  5409.  
  5410.      1) The reply buffer is the current buffer.
  5411.  
  5412.      2) The original message has been yanked and inserted into the
  5413.         reply buffer.
  5414.  
  5415.      3) Verbose mail headers from the original message have been
  5416.         inserted into the reply buffer directly before the text of the
  5417.         original message.
  5418.  
  5419.      4) Point is at the beginning of the verbose headers.
  5420.  
  5421.      5) Mark is at the end of the body of text to be cited.
  5422.  
  5423. For Emacs 19's, the region need not be active (and typically isn't
  5424. when this function is called.  Also, the hook `sc-pre-hook' is run
  5425. before, and `sc-post-hook' is run after the guts of this function." nil nil)
  5426.  
  5427. ;;;***
  5428.  
  5429. ;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (11597 40756))
  5430. ;;; Generated autoloads from tabify.el
  5431.  
  5432. (autoload (quote untabify) "tabify" "\
  5433. Convert all tabs in region to multiple spaces, preserving columns.
  5434. Called non-interactively, the region is specified by arguments
  5435. START and END, rather than by the position of point and mark.
  5436. The variable `tab-width' controls the spacing of tab stops." t nil)
  5437.  
  5438. (autoload (quote tabify) "tabify" "\
  5439. Convert multiple spaces in region to tabs when possible.
  5440. A group of spaces is partially replaced by tabs
  5441. when this can be done without changing the column they end at.
  5442. Called non-interactively, the region is specified by arguments
  5443. START and END, rather than by the position of point and mark.
  5444. The variable `tab-width' controls the spacing of tab stops." t nil)
  5445.  
  5446. ;;;***
  5447.  
  5448. ;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (11708 21361))
  5449. ;;; Generated autoloads from tar-mode.el
  5450.  
  5451. (autoload (quote tar-mode) "tar-mode" "\
  5452. Major mode for viewing a tar file as a dired-like listing of its contents.
  5453. You can move around using the usual cursor motion commands. 
  5454. Letters no longer insert themselves.
  5455. Type `e' to pull a file out of the tar file and into its own buffer;
  5456. or click mouse-2 on the file's line in the Tar mode buffer.
  5457. Type `c' to copy an entry from the tar file into another file on disk.
  5458.  
  5459. If you edit a sub-file of this archive (as with the `e' command) and 
  5460. save it with Control-x Control-s, the contents of that buffer will be 
  5461. saved back into the tar-file buffer; in this way you can edit a file 
  5462. inside of a tar archive without extracting it and re-archiving it.
  5463.  
  5464. See also: variables `tar-update-datestamp' and `tar-anal-blocksize'.
  5465. \\{tar-mode-map}" nil nil)
  5466.  
  5467. ;;;***
  5468.  
  5469. ;;;### (autoloads (tcl-mode) "tcl-mode" "tcl-mode.el" (11627 33805))
  5470. ;;; Generated autoloads from tcl-mode.el
  5471.  
  5472. (autoload (quote tcl-mode) "tcl-mode" "\
  5473. Major mode for editing tcl scripts.
  5474. The following keys are bound:
  5475. \\{tcl-mode-map}
  5476. " t nil)
  5477.  
  5478. ;;;***
  5479.  
  5480. ;;;### (autoloads (rsh telnet) "telnet" "telnet.el" (11684 41270))
  5481. ;;; Generated autoloads from telnet.el
  5482.  
  5483. (autoload (quote telnet) "telnet" "\
  5484. Open a network login connection to host named HOST (a string).
  5485. Communication with HOST is recorded in a buffer *HOST-telnet*.
  5486. Normally input is edited in Emacs and sent a line at a time." t nil)
  5487.  
  5488. (autoload (quote rsh) "telnet" "\
  5489. Open a network login connection to host named HOST (a string).
  5490. Communication with HOST is recorded in a buffer *HOST-rsh*.
  5491. Normally input is edited in Emacs and sent a line at a time." t nil)
  5492.  
  5493. ;;;***
  5494.  
  5495. ;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (11706 10473))
  5496. ;;; Generated autoloads from terminal.el
  5497.  
  5498. (autoload (quote terminal-emulator) "terminal" "\
  5499. Under a display-terminal emulator in BUFFER, run PROGRAM on arguments ARGS.
  5500. ARGS is a list of argument-strings.  Remaining arguments are WIDTH and HEIGHT.
  5501. BUFFER's contents are made an image of the display generated by that program,
  5502. and any input typed when BUFFER is the current Emacs buffer is sent to that
  5503. program an keyboard input.
  5504.  
  5505. Interactively, BUFFER defaults to \"*terminal*\" and PROGRAM and ARGS
  5506. are parsed from an input-string using your usual shell.
  5507. WIDTH and HEIGHT are determined from the size of the current window
  5508. -- WIDTH will be one less than the window's width, HEIGHT will be its height.
  5509.  
  5510. To switch buffers and leave the emulator, or to give commands
  5511. to the emulator itself (as opposed to the program running under it),
  5512. type Control-^.  The following character is an emulator command.
  5513. Type Control-^ twice to send it to the subprogram.
  5514. This escape character may be changed using the variable `terminal-escape-char'.
  5515.  
  5516. `Meta' characters may not currently be sent through the terminal emulator.
  5517.  
  5518. Here is a list of some of the variables which control the behaviour
  5519. of the emulator -- see their documentation for more information:
  5520. terminal-escape-char, terminal-scrolling, terminal-more-processing,
  5521. terminal-redisplay-interval.
  5522.  
  5523. This function calls the value of terminal-mode-hook if that exists
  5524. and is non-nil after the terminal buffer has been set up and the
  5525. subprocess started.
  5526.  
  5527. Presently with `termcap' only; if somebody sends us code to make this
  5528. work with `terminfo' we will try to use it." t nil)
  5529.  
  5530. ;;;***
  5531.  
  5532. ;;;### (autoloads (tex-start-shell slitex-mode latex-mode plain-tex-mode tex-mode) "tex-mode" "tex-mode.el" (11768 52209))
  5533. ;;; Generated autoloads from tex-mode.el
  5534.  
  5535. (defvar tex-shell-file-name nil "\
  5536. *If non-nil, the shell file name to run in the subshell used to run TeX.")
  5537.  
  5538. (defvar tex-directory "." "\
  5539. *Directory in which temporary files are left.
  5540. You can make this `/tmp' if your TEXINPUTS has no relative directories in it
  5541. and you don't try to apply \\[tex-region] or \\[tex-buffer] when there are
  5542. `\\input' commands with relative directories.")
  5543.  
  5544. (defvar tex-offer-save t "\
  5545. *If non-nil, ask about saving modified buffers before \\[tex-file] is run.")
  5546.  
  5547. (defvar tex-run-command "tex" "\
  5548. *Command used to run TeX subjob.
  5549. If this string contains an asterisk (`*'), that is replaced by the file name;
  5550. otherwise, the file name, preceded by blank, is added at the end.")
  5551.  
  5552. (defvar latex-run-command "latex" "\
  5553. *Command used to run LaTeX subjob.
  5554. If this string contains an asterisk (`*'), that is replaced by the file name;
  5555. otherwise, the file name, preceded by blank, is added at the end.")
  5556.  
  5557. (defvar latex-block-names nil "\
  5558. *User defined LaTeX block names.
  5559. Combined with `standard-latex-block-names' for minibuffer completion.")
  5560.  
  5561. (defvar slitex-run-command "slitex" "\
  5562. *Command used to run SliTeX subjob.
  5563. If this string contains an asterisk (`*'), that is replaced by the file name;
  5564. otherwise, the file name, preceded by blank, is added at the end.")
  5565.  
  5566. (defvar tex-bibtex-command "bibtex" "\
  5567. *Command used by `tex-bibtex-file' to gather bibliographic data.
  5568. If this string contains an asterisk (`*'), that is replaced by the file name;
  5569. otherwise, the file name, preceded by blank, is added at the end.")
  5570.  
  5571. (defvar tex-dvi-print-command "lpr -d" "\
  5572. *Command used by \\[tex-print] to print a .dvi file.
  5573. If this string contains an asterisk (`*'), that is replaced by the file name;
  5574. otherwise, the file name, preceded by blank, is added at the end.")
  5575.  
  5576. (defvar tex-alt-dvi-print-command "lpr -d" "\
  5577. *Command used by \\[tex-print] with a prefix arg to print a .dvi file.
  5578. If this string contains an asterisk (`*'), that is replaced by the file name;
  5579. otherwise, the file name, preceded by blank, is added at the end.
  5580.  
  5581. If two printers are not enough of a choice, you can set the variable
  5582. `tex-alt-dvi-print-command' to an expression that asks what you want;
  5583. for example,
  5584.  
  5585.     (setq tex-alt-dvi-print-command
  5586.          '(format \"lpr -P%s\" (read-string \"Use printer: \")))
  5587.  
  5588. would tell \\[tex-print] with a prefix argument to ask you which printer to
  5589. use.")
  5590.  
  5591. (defvar tex-dvi-view-command nil "\
  5592. *Command used by \\[tex-view] to display a `.dvi' file.
  5593. If this string contains an asterisk (`*'), that is replaced by the file name;
  5594. otherwise, the file name, preceded by blank, is added at the end.
  5595.  
  5596. This can be set conditionally so that the previewer used is suitable for the
  5597. window system being used.  For example,
  5598.  
  5599.     (setq tex-dvi-view-command
  5600.           (if (eq window-system 'x) \"xdvi\" \"dvi2tty * | cat -s\"))
  5601.  
  5602. would tell \\[tex-view] to use xdvi under X windows and to use dvi2tty
  5603. otherwise.")
  5604.  
  5605. (defvar tex-show-queue-command "lpq" "\
  5606. *Command used by \\[tex-show-print-queue] to show the print queue.
  5607. Should show the queue(s) that \\[tex-print] puts jobs on.")
  5608.  
  5609. (defvar tex-default-mode (quote plain-tex-mode) "\
  5610. *Mode to enter for a new file that might be either TeX or LaTeX.
  5611. This variable is used when it can't be determined whether the file
  5612. is plain TeX or LaTeX or what because the file contains no commands.
  5613. Normally set to either `plain-tex-mode' or `latex-mode'.")
  5614.  
  5615. (defvar tex-open-quote "``" "\
  5616. *String inserted by typing \\[tex-insert-quote] to open a quotation.")
  5617.  
  5618. (defvar tex-close-quote "''" "\
  5619. *String inserted by typing \\[tex-insert-quote] to close a quotation.")
  5620.  
  5621. (autoload (quote tex-mode) "tex-mode" "\
  5622. Major mode for editing files of input for TeX, LaTeX, or SliTeX.
  5623. Tries to determine (by looking at the beginning of the file) whether
  5624. this file is for plain TeX, LaTeX, or SliTeX and calls `plain-tex-mode',
  5625. `latex-mode', or `slitex-mode', respectively.  If it cannot be determined,
  5626. such as if there are no commands in the file, the value of `tex-default-mode'
  5627. says which mode to use." t nil)
  5628.  
  5629. (defalias (quote TeX-mode) (quote tex-mode))
  5630.  
  5631. (defalias (quote LaTeX-mode) (quote latex-mode))
  5632.  
  5633. (autoload (quote plain-tex-mode) "tex-mode" "\
  5634. Major mode for editing files of input for plain TeX.
  5635. Makes $ and } display the characters they match.
  5636. Makes \" insert `` when it seems to be the beginning of a quotation,
  5637. and '' when it appears to be the end; it inserts \" only after a \\.
  5638.  
  5639. Use \\[tex-region] to run TeX on the current region, plus a \"header\"
  5640. copied from the top of the file (containing macro definitions, etc.),
  5641. running TeX under a special subshell.  \\[tex-buffer] does the whole buffer.
  5642. \\[tex-file] saves the buffer and then processes the file.
  5643. \\[tex-print] prints the .dvi file made by any of these.
  5644. \\[tex-view] previews the .dvi file made by any of these.
  5645. \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
  5646.  
  5647. Use \\[validate-tex-buffer] to check buffer for paragraphs containing
  5648. mismatched $'s or braces.
  5649.  
  5650. Special commands:
  5651. \\{tex-mode-map}
  5652.  
  5653. Mode variables:
  5654. tex-run-command
  5655.     Command string used by \\[tex-region] or \\[tex-buffer].
  5656. tex-directory
  5657.     Directory in which to create temporary files for TeX jobs
  5658.     run by \\[tex-region] or \\[tex-buffer].
  5659. tex-dvi-print-command
  5660.     Command string used by \\[tex-print] to print a .dvi file.
  5661. tex-alt-dvi-print-command
  5662.     Alternative command string used by \\[tex-print] (when given a prefix
  5663.     argument) to print a .dvi file.
  5664. tex-dvi-view-command
  5665.     Command string used by \\[tex-view] to preview a .dvi file.
  5666. tex-show-queue-command
  5667.     Command string used by \\[tex-show-print-queue] to show the print
  5668.     queue that \\[tex-print] put your job on.
  5669.  
  5670. Entering Plain-tex mode runs the hook `text-mode-hook', then the hook
  5671. `tex-mode-hook', and finally the hook `plain-tex-mode-hook'.  When the
  5672. special subshell is initiated, the hook `tex-shell-hook' is run." t nil)
  5673.  
  5674. (defalias (quote plain-TeX-mode) (quote plain-tex-mode))
  5675.  
  5676. (autoload (quote latex-mode) "tex-mode" "\
  5677. Major mode for editing files of input for LaTeX.
  5678. Makes $ and } display the characters they match.
  5679. Makes \" insert `` when it seems to be the beginning of a quotation,
  5680. and '' when it appears to be the end; it inserts \" only after a \\.
  5681.  
  5682. Use \\[tex-region] to run LaTeX on the current region, plus the preamble
  5683. copied from the top of the file (containing \\documentstyle, etc.),
  5684. running LaTeX under a special subshell.  \\[tex-buffer] does the whole buffer.
  5685. \\[tex-file] saves the buffer and then processes the file.
  5686. \\[tex-print] prints the .dvi file made by any of these.
  5687. \\[tex-view] previews the .dvi file made by any of these.
  5688. \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
  5689.  
  5690. Use \\[validate-tex-buffer] to check buffer for paragraphs containing
  5691. mismatched $'s or braces.
  5692.  
  5693. Special commands:
  5694. \\{tex-mode-map}
  5695.  
  5696. Mode variables:
  5697. latex-run-command
  5698.     Command string used by \\[tex-region] or \\[tex-buffer].
  5699. tex-directory
  5700.     Directory in which to create temporary files for LaTeX jobs
  5701.     run by \\[tex-region] or \\[tex-buffer].
  5702. tex-dvi-print-command
  5703.     Command string used by \\[tex-print] to print a .dvi file.
  5704. tex-alt-dvi-print-command
  5705.     Alternative command string used by \\[tex-print] (when given a prefix
  5706.     argument) to print a .dvi file.
  5707. tex-dvi-view-command
  5708.     Command string used by \\[tex-view] to preview a .dvi file.
  5709. tex-show-queue-command
  5710.     Command string used by \\[tex-show-print-queue] to show the print
  5711.     queue that \\[tex-print] put your job on.
  5712.  
  5713. Entering Latex mode runs the hook `text-mode-hook', then 
  5714. `tex-mode-hook', and finally `latex-mode-hook'.  When the special
  5715. subshell is initiated, `tex-shell-hook' is run." t nil)
  5716.  
  5717. (autoload (quote slitex-mode) "tex-mode" "\
  5718. Major mode for editing files of input for SliTeX.
  5719. Makes $ and } display the characters they match.
  5720. Makes \" insert `` when it seems to be the beginning of a quotation,
  5721. and '' when it appears to be the end; it inserts \" only after a \\.
  5722.  
  5723. Use \\[tex-region] to run SliTeX on the current region, plus the preamble
  5724. copied from the top of the file (containing \\documentstyle, etc.),
  5725. running SliTeX under a special subshell.  \\[tex-buffer] does the whole buffer.
  5726. \\[tex-file] saves the buffer and then processes the file.
  5727. \\[tex-print] prints the .dvi file made by any of these.
  5728. \\[tex-view] previews the .dvi file made by any of these.
  5729. \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
  5730.  
  5731. Use \\[validate-tex-buffer] to check buffer for paragraphs containing
  5732. mismatched $'s or braces.
  5733.  
  5734. Special commands:
  5735. \\{tex-mode-map}
  5736.  
  5737. Mode variables:
  5738. slitex-run-command
  5739.     Command string used by \\[tex-region] or \\[tex-buffer].
  5740. tex-directory
  5741.     Directory in which to create temporary files for SliTeX jobs
  5742.     run by \\[tex-region] or \\[tex-buffer].
  5743. tex-dvi-print-command
  5744.     Command string used by \\[tex-print] to print a .dvi file.
  5745. tex-alt-dvi-print-command
  5746.     Alternative command string used by \\[tex-print] (when given a prefix
  5747.     argument) to print a .dvi file.
  5748. tex-dvi-view-command
  5749.     Command string used by \\[tex-view] to preview a .dvi file.
  5750. tex-show-queue-command
  5751.     Command string used by \\[tex-show-print-queue] to show the print
  5752.     queue that \\[tex-print] put your job on.
  5753.  
  5754. Entering SliTeX mode runs the hook `text-mode-hook', then the hook
  5755. `tex-mode-hook', then the hook `latex-mode-hook', and finally the hook
  5756. `slitex-mode-hook'.  When the special subshell is initiated, the hook
  5757. `tex-shell-hook' is run." t nil)
  5758.  
  5759. (autoload (quote tex-start-shell) "tex-mode" nil nil nil)
  5760.  
  5761. ;;;***
  5762.  
  5763. ;;;### (autoloads (texinfo-format-region texinfo-format-buffer) "texinfmt" "texinfmt.el" (11649 1948))
  5764. ;;; Generated autoloads from texinfmt.el
  5765.  
  5766. (autoload (quote texinfo-format-buffer) "texinfmt" "\
  5767. Process the current buffer as texinfo code, into an Info file.
  5768. The Info file output is generated in a buffer visiting the Info file
  5769. names specified in the @setfilename command.
  5770.  
  5771. Non-nil argument (prefix, if interactive) means don't make tag table
  5772. and don't split the file if large.  You can use Info-tagify and
  5773. Info-split to do these manually." t nil)
  5774.  
  5775. (autoload (quote texinfo-format-region) "texinfmt" "\
  5776. Convert the current region of the Texinfo file to Info format.
  5777. This lets you see what that part of the file will look like in Info.
  5778. The command is bound to \\[texinfo-format-region].  The text that is
  5779. converted to Info is stored in a temporary buffer." t nil)
  5780.  
  5781. ;;;***
  5782.  
  5783. ;;;### (autoloads (texinfo-mode) "texinfo" "texinfo.el" (11502 38054))
  5784. ;;; Generated autoloads from texinfo.el
  5785.  
  5786. (autoload (quote texinfo-mode) "texinfo" "\
  5787. Major mode for editing Texinfo files.
  5788.  
  5789.   It has these extra commands:
  5790. \\{texinfo-mode-map}
  5791.  
  5792.   These are files that are used as input for TeX to make printed manuals
  5793. and also to be turned into Info files with \\[makeinfo-buffer] or
  5794. the `makeinfo' program.  These files must be written in a very restricted and
  5795. modified version of TeX input format.
  5796.  
  5797.   Editing commands are like text-mode except that the syntax table is
  5798. set up so expression commands skip Texinfo bracket groups.  To see
  5799. what the Info version of a region of the Texinfo file will look like,
  5800. use \\[makeinfo-region], which runs `makeinfo' on the current region.
  5801.  
  5802.   You can show the structure of a Texinfo file with \\[texinfo-show-structure].
  5803. This command shows the structure of a Texinfo file by listing the
  5804. lines with the @-sign commands for @chapter, @section, and the like.
  5805. These lines are displayed in another window called the *Occur* window.
  5806. In that window, you can position the cursor over one of the lines and
  5807. use \\[occur-mode-goto-occurrence], to jump to the corresponding spot
  5808. in the Texinfo file.
  5809.  
  5810.   In addition, Texinfo mode provides commands that insert various
  5811. frequently used @-sign commands into the buffer.  You can use these
  5812. commands to save keystrokes.  And you can insert balanced braces with
  5813. \\[texinfo-insert-braces] and later use the command \\[up-list] to
  5814. move forward past the closing brace.
  5815.  
  5816. Also, Texinfo mode provides functions for automatically creating or
  5817. updating menus and node pointers.  These functions
  5818.  
  5819.   * insert the `Next', `Previous' and `Up' pointers of a node,
  5820.   * insert or update the menu for a section, and
  5821.   * create a master menu for a Texinfo source file.
  5822.  
  5823. Here are the functions:
  5824.  
  5825.     texinfo-update-node                \\[texinfo-update-node]
  5826.     texinfo-every-node-update          \\[texinfo-every-node-update]
  5827.     texinfo-sequential-node-update 
  5828.  
  5829.     texinfo-make-menu                  \\[texinfo-make-menu]
  5830.     texinfo-all-menus-update           \\[texinfo-all-menus-update]
  5831.     texinfo-master-menu
  5832.  
  5833.     texinfo-indent-menu-description (column &optional region-p)
  5834.  
  5835. The `texinfo-column-for-description' variable specifies the column to
  5836. which menu descriptions are indented. 
  5837.  
  5838. Passed an argument (a prefix argument, if interactive), the
  5839. `texinfo-update-node' and `texinfo-make-menu' functions do their jobs
  5840. in the region.
  5841.  
  5842. To use the updating commands, you must structure your Texinfo file
  5843. hierarchically, such that each `@node' line, with the exception of the
  5844. Top node, is accompanied by some kind of section line, such as an
  5845. `@chapter' or `@section' line.
  5846.  
  5847. If the file has a `top' node, it must be called `top' or `Top' and
  5848. be the first node in the file.
  5849.  
  5850. Entering Texinfo mode calls the value of text-mode-hook, and then the
  5851. value of texinfo-mode-hook." t nil)
  5852.  
  5853. ;;;***
  5854.  
  5855. ;;;### (autoloads (texinfo-sequential-node-update texinfo-every-node-update texinfo-update-node) "texnfo-upd" "texnfo-upd.el" (11488 11824))
  5856. ;;; Generated autoloads from texnfo-upd.el
  5857.  
  5858. (autoload (quote texinfo-update-node) "texnfo-upd" "\
  5859. Without any prefix argument, update the node in which point is located.
  5860. Non-nil argument (prefix, if interactive) means update the nodes in the
  5861. marked region.
  5862.  
  5863. The functions for creating or updating nodes and menus, and their
  5864. keybindings, are:
  5865.  
  5866.     texinfo-update-node (&optional region-p)    \\[texinfo-update-node]
  5867.     texinfo-every-node-update ()                \\[texinfo-every-node-update]
  5868.     texinfo-sequential-node-update (&optional region-p)
  5869.  
  5870.     texinfo-make-menu (&optional region-p)      \\[texinfo-make-menu]
  5871.     texinfo-all-menus-update ()                 \\[texinfo-all-menus-update]
  5872.     texinfo-master-menu ()
  5873.  
  5874.     texinfo-indent-menu-description (column &optional region-p)
  5875.  
  5876. The `texinfo-column-for-description' variable specifies the column to
  5877. which menu descriptions are indented. Its default value is 32." t nil)
  5878.  
  5879. (autoload (quote texinfo-every-node-update) "texnfo-upd" "\
  5880. Update every node in a Texinfo file." t nil)
  5881.  
  5882. (autoload (quote texinfo-sequential-node-update) "texnfo-upd" "\
  5883. Update one node (or many) in a Texinfo file with sequential pointers.
  5884.  
  5885. This function causes the `Next' or `Previous' pointer to point to the
  5886. immediately preceding or following node, even if it is at a higher or
  5887. lower hierarchical level in the document.  Continually pressing `n' or
  5888. `p' takes you straight through the file.
  5889.  
  5890. Without any prefix argument, update the node in which point is located.
  5891. Non-nil argument (prefix, if interactive) means update the nodes in the
  5892. marked region.
  5893.  
  5894. This command makes it awkward to navigate among sections and
  5895. subsections; it should be used only for those documents that are meant
  5896. to be read like a novel rather than a reference, and for which the
  5897. Info `g*' command is inadequate." t nil)
  5898.  
  5899. ;;;***
  5900.  
  5901. ;;;### (autoloads (thing-at-point bounds-of-thing-at-point forward-thing) "thingatpt" "thingatpt.el" (11600 13404))
  5902. ;;; Generated autoloads from thingatpt.el
  5903.  
  5904. (autoload (quote forward-thing) "thingatpt" "\
  5905. Move forward to the end of the next THING." nil nil)
  5906.  
  5907. (autoload (quote bounds-of-thing-at-point) "thingatpt" "\
  5908. Determine the start and end buffer locations for the THING at point,
  5909. where THING is an entity for which there is a either a corresponding
  5910. forward-THING operation, or corresponding beginning-of-THING and
  5911. end-of-THING operations, eg. 'word, 'sentence, 'defun.
  5912.   Return a cons cell '(start . end) giving the start and end positions." nil nil)
  5913.  
  5914. (autoload (quote thing-at-point) "thingatpt" "\
  5915. Return the THING at point, where THING is an entity defined by
  5916. bounds-of-thing-at-point." nil nil)
  5917.  
  5918. ;;;***
  5919.  
  5920. ;;;### (autoloads (display-time) "time" "time.el" (11703 21595))
  5921. ;;; Generated autoloads from time.el
  5922.  
  5923. (defvar display-time-day-and-date nil "\
  5924. *Non-nil means \\[display-time] should display day and date as well as time.")
  5925.  
  5926. (autoload (quote display-time) "time" "\
  5927. Display current time, load level, and mail flag in mode line of each buffer.
  5928. Updates automatically every minute.
  5929. If `display-time-day-and-date' is non-nil, the current day and date
  5930. are displayed as well.
  5931. After each update, `display-time-hook' is run with `run-hooks'." t nil)
  5932.  
  5933. ;;;***
  5934.  
  5935. ;;;### (autoloads (time-stamp) "time-stamp" "time-stamp.el" (11618 59229))
  5936. ;;; Generated autoloads from time-stamp.el
  5937.  
  5938. (autoload (quote time-stamp) "time-stamp" "\
  5939. Update the time stamp string in the buffer.
  5940. If you put a time stamp template anywhere in the first 8 lines of a file,
  5941. it can be updated every time you save the file.  See the top of
  5942. `time-stamp.el' for a sample.  The template looks like one of the following:
  5943.     Time-stamp: <>
  5944.     Time-stamp: \" \"
  5945. The time stamp is written between the brackets or quotes, resulting in
  5946.     Time-stamp: <93/06/18 10:26:51 gildea>
  5947. Only does its thing if the variable  time-stamp-active  is non-nil.
  5948. Typically used on  write-file-hooks  for automatic time-stamping.
  5949. The format of the time stamp is determined by the variable  time-stamp-format.
  5950. The variables time-stamp-line-limit, time-stamp-start, and time-stamp-end
  5951. control finding the template." t nil)
  5952.  
  5953. ;;;***
  5954.  
  5955. ;;;### (autoloads (run-at-time) "timer" "timer.el" (11681 65046))
  5956. ;;; Generated autoloads from timer.el
  5957.  
  5958. (autoload (quote run-at-time) "timer" "\
  5959. Run a function at a time, and optionally on a regular interval.
  5960. Arguments are TIME, REPEAT, FUNCTION &rest ARGS.
  5961. TIME, a string, can be specified absolutely or relative to now.
  5962. TIME can also be an integer, a number of seconds.
  5963. REPEAT, an integer number of seconds, is the interval on which to repeat
  5964. the call to the function.  If REPEAT is nil, call it just once.
  5965.  
  5966. Absolute times may be specified in a wide variety of formats;
  5967. Something of the form `HOUR:MIN:SEC TIMEZONE MONTH/DAY/YEAR', where
  5968. all fields are numbers, works; the format used by the Unix `date'
  5969. command works too.
  5970.  
  5971. Relative times may be specified as a series of numbers followed by units:
  5972.   1 min             denotes one minute from now.
  5973.   min            does too.
  5974.   1 min 5 sec        denotes 65 seconds from now.
  5975.   1 min 2 sec 3 hour 4 day 5 week 6 fortnight 7 month 8 year
  5976.             denotes the sum of all the given durations from now." t nil)
  5977.  
  5978. ;;;***
  5979.  
  5980. ;;;### (autoloads (tpu-edt-on) "tpu-edt" "tpu-edt.el" (11706 10501))
  5981. ;;; Generated autoloads from tpu-edt.el
  5982.  
  5983. (fset (quote tpu-edt-mode) (quote tpu-edt-on))
  5984.  
  5985. (fset (quote tpu-edt) (quote tpu-edt-on))
  5986.  
  5987. (autoload (quote tpu-edt-on) "tpu-edt" "\
  5988. Turn on TPU/edt emulation." t nil)
  5989.  
  5990. ;;;***
  5991.  
  5992. ;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins) "tpu-extras" "tpu-extras.el" (11509 41803))
  5993. ;;; Generated autoloads from tpu-extras.el
  5994.  
  5995. (autoload (quote tpu-set-scroll-margins) "tpu-extras" "\
  5996. Set scroll margins." t nil)
  5997.  
  5998. (autoload (quote tpu-set-cursor-free) "tpu-extras" "\
  5999. Allow the cursor to move freely about the screen." t nil)
  6000.  
  6001. (autoload (quote tpu-set-cursor-bound) "tpu-extras" "\
  6002. Constrain the cursor to the flow of the text." t nil)
  6003.  
  6004. ;;;***
  6005.  
  6006. ;;;### (autoloads (tq-create) "tq" "tq.el" (10941 58296))
  6007. ;;; Generated autoloads from tq.el
  6008.  
  6009. (autoload (quote tq-create) "tq" "\
  6010. Create and return a transaction queue communicating with PROCESS.
  6011. PROCESS should be a subprocess capable of sending and receiving
  6012. streams of bytes.  It may be a local process, or it may be connected
  6013. to a tcp server on another machine." nil nil)
  6014.  
  6015. ;;;***
  6016.  
  6017. ;;;### (autoloads (trace-function-background trace-function) "trace" "trace.el" (11506 28325))
  6018. ;;; Generated autoloads from trace.el
  6019.  
  6020. (defvar trace-buffer "*trace-output*" "\
  6021. *Trace output will by default go to that buffer.")
  6022.  
  6023. (autoload (quote trace-function) "trace" "\
  6024. Traces FUNCTION with trace output going to BUFFER.
  6025. For every call of FUNCTION Lisp-style trace messages that display argument
  6026. and return values will be inserted into BUFFER. This function generates the
  6027. trace advice for FUNCTION and activates it together with any other advice
  6028. there might be!! The trace BUFFER will popup whenever FUNCTION is called.
  6029. Do not use this to trace functions that switch buffers or do any other
  6030. display oriented stuff, use `trace-function-background' instead." t nil)
  6031.  
  6032. (autoload (quote trace-function-background) "trace" "\
  6033. Traces FUNCTION with trace output going quietly to BUFFER.
  6034. For every call of FUNCTION Lisp-style trace messages that display argument
  6035. and return values will be inserted into BUFFER. This function generates the
  6036. trace advice for FUNCTION and activates it together with any other advice
  6037. there might be!! Trace output will quietly go to BUFFER without changing
  6038. the window or buffer configuration at all." t nil)
  6039.  
  6040. ;;;***
  6041.  
  6042. ;;;### (autoloads (tc-recenter tc-scroll-down tc-scroll-up tc-scroll-line tc-associated-buffer tc-merge tc-dissociate tc-split tc-associate-buffer tc-two-columns) "two-column" "two-column.el" (11706 10524))
  6043. ;;; Generated autoloads from two-column.el
  6044.  
  6045. (defvar tc-mode-map nil "\
  6046. Keymap for commands for two-column mode.")
  6047.  
  6048. (if tc-mode-map nil (setq tc-mode-map (make-sparse-keymap)) (define-key tc-mode-map "1" (quote tc-merge)) (define-key tc-mode-map "2" (quote tc-two-columns)) (define-key tc-mode-map "b" (quote tc-associate-buffer)) (define-key tc-mode-map "d" (quote tc-dissociate)) (define-key tc-mode-map "\f" (quote tc-recenter)) (define-key tc-mode-map "o" (quote tc-associated-buffer)) (define-key tc-mode-map "s" (quote tc-split)) (define-key tc-mode-map "{" (quote shrink-window-horizontally)) (define-key tc-mode-map "}" (quote enlarge-window-horizontally)) (define-key tc-mode-map " " (quote tc-scroll-up)) (define-key tc-mode-map "" (quote tc-scroll-down)) (define-key tc-mode-map "" (quote tc-scroll-line)))
  6049.  
  6050. (global-set-key "6" tc-mode-map)
  6051.  
  6052. (autoload (quote tc-two-columns) "two-column" "\
  6053. Split current window vertically for two-column editing.
  6054.  
  6055. When called the first time, associates a buffer with the current
  6056. buffer.  Both buffers are put in two-column minor mode and
  6057. tc-mode-hook gets called on both.  These buffers remember
  6058. about one another, even when renamed.
  6059.  
  6060. When called again, restores the screen layout with the current buffer
  6061. first and the associated buffer to it's right.
  6062.  
  6063. If you include long lines, i.e which will span both columns (eg.
  6064. source code), they should be in what will be the first column, with
  6065. the associated buffer having empty lines next to them.
  6066.  
  6067. You have the following commands at your disposal:
  6068.  
  6069. \\[tc-two-columns]   Rearrange screen
  6070. \\[tc-associate-buffer]   Reassociate buffer after changing major mode
  6071. \\[tc-scroll-up]   Scroll both buffers up by a screenfull
  6072. \\[tc-scroll-down]   Scroll both buffers down by a screenful
  6073. \\[tc-scroll-line]   Scroll both buffers up by one or more lines
  6074. \\[tc-recenter]   Recenter and realign other buffer
  6075. \\[shrink-window-horizontally], \\[enlarge-window-horizontally]   Shrink, enlarge current column
  6076. \\[tc-associated-buffer]   Switch to associated buffer
  6077. \\[tc-merge]   Merge both buffers
  6078.  
  6079. These keybindings can be customized in your ~/.emacs by `tc-prefix'
  6080. and `tc-mode-map'.
  6081.  
  6082. The appearance of the screen can be customized by the variables
  6083. `tc-window-width', `tc-beyond-fill-column',
  6084. `tc-mode-line-format' and `truncate-partial-width-windows'." t nil)
  6085.  
  6086. (autoload (quote tc-associate-buffer) "two-column" "\
  6087. Associate another buffer with this one in two-column minor mode.
  6088. Can also be used to associate a just previously visited file, by
  6089. accepting the proposed default buffer.
  6090.  
  6091. See  \\[tc-two-columns]  and  `two-column.el'  for further details." t nil)
  6092.  
  6093. (autoload (quote tc-split) "two-column" "\
  6094. Unmerge a two-column text into two buffers in two-column minor mode.
  6095. The text is unmerged at the cursor's column which becomes the local
  6096. value of `tc-window-width'.  Only lines that have the ARG same
  6097. preceding characters at that column get split.  The ARG preceding
  6098. characters without any leading whitespace become the local value for
  6099. `tc-separator'.  This way lines that continue across both
  6100. columns remain untouched in the first buffer.
  6101.  
  6102. This function can be used with a prototype line, to set up things as
  6103. you like them.  You write the first line of each column with the
  6104. separator you like and then unmerge that line.  E.g.:
  6105.  
  6106. First column's text    sSs  Second columns text
  6107.                \\___/\\
  6108.             /    \\
  6109.    5 character Separator      You type  M-5 \\[tc-split]  with the point here
  6110.  
  6111. See  \\[tc-two-columns]  and  `two-column.el'  for further details." t nil)
  6112.  
  6113. (autoload (quote tc-dissociate) "two-column" "\
  6114. Turn off two-column minor mode in current and associated buffer.
  6115. If the associated buffer is unmodified and empty, it is killed." t nil)
  6116.  
  6117. (autoload (quote tc-merge) "two-column" "\
  6118. Merges the associated buffer with the current buffer.
  6119. They get merged at the column, which is the value of
  6120. `tc-window-width', i.e. usually at the vertical window
  6121. separator.  This separator gets replaced with white space.  Beyond
  6122. that the value of gets inserted on merged lines.  The two columns are
  6123. thus pasted side by side, in a single text.  If the other buffer is
  6124. not displayed to the left of this one, then this one becomes the left
  6125. column.
  6126.  
  6127. If you want `tc-separator' on empty lines in the second column,
  6128. you should put just one space in them.  In the final result, you can strip
  6129. off trailing spaces with \\[beginning-of-buffer] \\[replace-regexp] [ SPC TAB ] + $ RET RET" t nil)
  6130.  
  6131. (autoload (quote tc-associated-buffer) "two-column" "\
  6132. Switch to associated buffer." t nil)
  6133.  
  6134. (autoload (quote tc-scroll-line) "two-column" "\
  6135. Scroll current window upward by ARG lines.
  6136. The associated window gets scrolled to the same line." t nil)
  6137.  
  6138. (autoload (quote tc-scroll-up) "two-column" "\
  6139. Scroll current window upward by ARG screens.
  6140. The associated window gets scrolled to the same line." t nil)
  6141.  
  6142. (autoload (quote tc-scroll-down) "two-column" "\
  6143. Scroll current window downward by ARG screens.
  6144. The associated window gets scrolled to the same line." t nil)
  6145.  
  6146. (autoload (quote tc-recenter) "two-column" "\
  6147. Center point in window.  With ARG, put point on line ARG.
  6148. This counts from bottom if ARG is negative.  The associated window
  6149. gets scrolled to the same line." t nil)
  6150.  
  6151. ;;;***
  6152.  
  6153. ;;;### (autoloads (ununderline-region underline-region) "underline" "underline.el" (11652 54624))
  6154. ;;; Generated autoloads from underline.el
  6155.  
  6156. (autoload (quote underline-region) "underline" "\
  6157. Underline all nonblank characters in the region.
  6158. Works by overstriking underscores.
  6159. Called from program, takes two arguments START and END
  6160. which specify the range to operate on." t nil)
  6161.  
  6162. (autoload (quote ununderline-region) "underline" "\
  6163. Remove all underlining (overstruck underscores) in the region.
  6164. Called from program, takes two arguments START and END
  6165. which specify the range to operate on." t nil)
  6166.  
  6167. ;;;***
  6168.  
  6169. ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "unrmail.el" (11675 24392))
  6170. ;;; Generated autoloads from unrmail.el
  6171.  
  6172. (autoload (quote batch-unrmail) "unrmail" "\
  6173. Convert Rmail files to system inbox format.
  6174. Specify the input Rmail file names as command line arguments.
  6175. For each Rmail file, the corresponding output file name
  6176. is made by adding `.mail' at the end.
  6177. For example, invoke `emacs -batch -f batch-unrmail RMAIL'." nil nil)
  6178.  
  6179. (autoload (quote unrmail) "unrmail" "\
  6180. Convert Rmail file FILE to system inbox format file TO-FILE." t nil)
  6181.  
  6182. ;;;***
  6183.  
  6184. ;;;### (autoloads (ask-to-update-copyright update-copyright) "upd-copyr" "upd-copyr.el" (11576 50058))
  6185. ;;; Generated autoloads from upd-copyr.el
  6186.  
  6187. (defvar replace-copying-with nil "\
  6188. *If non-nil, replace copying notices with this file.")
  6189.  
  6190. (autoload (quote update-copyright) "upd-copyr" "\
  6191. Update the copyright notice at the beginning of the buffer
  6192. to indicate the current year.  If optional arg REPLACE is given
  6193. \(interactively, with prefix arg) replace the years in the notice
  6194. rather than adding the current year after them.
  6195. If `replace-copying-with' is set, the copying permissions following the
  6196. copyright are replaced as well.
  6197.  
  6198. If optional third argument ASK is non-nil, the user is prompted for whether
  6199. or not to update the copyright.  If optional fourth argument ASK-YEAR is
  6200. non-nil, the user is prompted for whether or not to replace the year rather
  6201. than adding to it." t nil)
  6202.  
  6203. (autoload (quote ask-to-update-copyright) "upd-copyr" "\
  6204. If the current buffer contains a copyright notice that is out of date,
  6205. ask the user if it should be updated with `update-copyright' (which see).
  6206. Put this on write-file-hooks." nil nil)
  6207.  
  6208. ;;;***
  6209.  
  6210. ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) "userlock" "userlock.el" (11369 22579))
  6211. ;;; Generated autoloads from userlock.el
  6212.  
  6213. (autoload (quote ask-user-about-lock) "userlock" "\
  6214. Ask user what to do when he wants to edit FILE but it is locked by USER.
  6215. This function has a choice of three things to do:
  6216.   do (signal 'buffer-file-locked (list FILE USER))
  6217.     to refrain from editing the file
  6218.   return t (grab the lock on the file)
  6219.   return nil (edit the file even though it is locked).
  6220. You can rewrite it to use any criterion you like to choose which one to do." nil nil)
  6221.  
  6222. (autoload (quote ask-user-about-supersession-threat) "userlock" "\
  6223. Ask a user who is about to modify an obsolete buffer what to do.
  6224. This function has two choices: it can return, in which case the modification
  6225. of the buffer will proceed, or it can (signal 'file-supersession (file)),
  6226. in which case the proposed buffer modification will not be made.
  6227.  
  6228. You can rewrite this to use any criterion you like to choose which one to do.
  6229. The buffer in question is current when this function is called." nil nil)
  6230.  
  6231. ;;;***
  6232.  
  6233. ;;;### (autoloads (vc-update-change-log vc-cancel-version vc-revert-buffer vc-print-log vc-retrieve-snapshot vc-create-snapshot vc-directory vc-insert-headers vc-version-other-window vc-diff vc-register vc-next-action) "vc" "vc.el" (11703 21263))
  6234. ;;; Generated autoloads from vc.el
  6235.  
  6236. (defvar vc-checkin-hook nil "\
  6237. *List of functions called after a checkin is done.  See `run-hooks'.")
  6238.  
  6239. (autoload (quote vc-next-action) "vc" "\
  6240. Do the next logical checkin or checkout operation on the current file.
  6241.    If the file is not already registered, this registers it for version
  6242. control and then retrieves a writable, locked copy for editing.
  6243.    If the file is registered and not locked by anyone, this checks out
  6244. a writable and locked file ready for editing.
  6245.    If the file is checked out and locked by the calling user, this
  6246. first checks to see if the file has changed since checkout.  If not,
  6247. it performs a revert.
  6248.    If the file has been changed, this pops up a buffer for entry
  6249. of a log message; when the message has been entered, it checks in the
  6250. resulting changes along with the log message as change commentary.  If
  6251. the variable `vc-keep-workfiles' is non-nil (which is its default), a
  6252. read-only copy of the changed file is left in place afterwards.
  6253.    If the file is registered and locked by someone else, you are given
  6254. the option to steal the lock.
  6255.    If you call this from within a VC dired buffer with no files marked,
  6256. it will operate on the file in the current line.
  6257.    If you call this from within a VC dired buffer, and one or more
  6258. files are marked, it will accept a log message and then operate on
  6259. each one.  The log message will be used as a comment for any register
  6260. or checkin operations, but ignored when doing checkouts.  Attempted
  6261. lock steals will raise an error.
  6262.  
  6263.    For checkin, a prefix argument lets you specify the version number to use." t nil)
  6264.  
  6265. (autoload (quote vc-register) "vc" "\
  6266. Register the current file into your version-control system." t nil)
  6267.  
  6268. (autoload (quote vc-diff) "vc" "\
  6269. Display diffs between file versions.
  6270. Normally this compares the current file and buffer with the most recent 
  6271. checked in version of that file.  This uses no arguments.
  6272. With a prefix argument, it reads the file name to use
  6273. and two version designators specifying which versions to compare." t nil)
  6274.  
  6275. (autoload (quote vc-version-other-window) "vc" "\
  6276. Visit version REV of the current buffer in another window.
  6277. If the current buffer is named `F', the version is named `F.~REV~'.
  6278. If `F.~REV~' already exists, it is used instead of being re-created." t nil)
  6279.  
  6280. (autoload (quote vc-insert-headers) "vc" "\
  6281. Insert headers in a file for use with your version-control system.
  6282. Headers desired are inserted at the start of the buffer, and are pulled from
  6283. the variable `vc-header-alist'." t nil)
  6284.  
  6285. (autoload (quote vc-directory) "vc" "\
  6286. Show version-control status of all files under the current directory." t nil)
  6287.  
  6288. (autoload (quote vc-create-snapshot) "vc" "\
  6289. Make a snapshot called NAME.
  6290. The snapshot is made from all registered files at or below the current
  6291. directory.  For each file, the version level of its latest
  6292. version becomes part of the named configuration." t nil)
  6293.  
  6294. (autoload (quote vc-retrieve-snapshot) "vc" "\
  6295. Retrieve the snapshot called NAME.
  6296. This function fails if any files are locked at or below the current directory
  6297. Otherwise, all registered files are checked out (unlocked) at their version
  6298. levels in the snapshot." t nil)
  6299.  
  6300. (autoload (quote vc-print-log) "vc" "\
  6301. List the change log of the current buffer in a window." t nil)
  6302.  
  6303. (autoload (quote vc-revert-buffer) "vc" "\
  6304. Revert the current buffer's file back to the latest checked-in version.
  6305. This asks for confirmation if the buffer contents are not identical
  6306. to that version." t nil)
  6307.  
  6308. (autoload (quote vc-cancel-version) "vc" "\
  6309. Get rid of most recently checked in version of this file.
  6310. A prefix argument means do not revert the buffer afterwards." t nil)
  6311.  
  6312. (autoload (quote vc-update-change-log) "vc" "\
  6313. Find change log file and add entries from recent RCS logs.
  6314. The mark is left at the end of the text prepended to the change log.
  6315. With prefix arg of C-u, only find log entries for the current buffer's file.
  6316. With any numeric prefix arg, find log entries for all files currently visited.
  6317. Otherwise, find log entries for all registered files in the default directory.
  6318. From a program, any arguments are passed to the `rcs2log' script." t nil)
  6319.  
  6320. ;;;***
  6321.  
  6322. ;;;### (autoloads (vi-mode) "vi" "vi.el" (11285 51569))
  6323. ;;; Generated autoloads from vi.el
  6324.  
  6325. (autoload (quote vi-mode) "vi" "\
  6326. Major mode that acts like the `vi' editor.
  6327. The purpose of this mode is to provide you the combined power of vi (namely,
  6328. the \"cross product\" effect of commands and repeat last changes) and Emacs.
  6329.  
  6330. This command redefines nearly all keys to look like vi commands.
  6331. It records the previous major mode, and any vi command for input
  6332. (`i', `a', `s', etc.) switches back to that mode.
  6333. Thus, ordinary Emacs (in whatever major mode you had been using)
  6334. is \"input\" mode as far as vi is concerned.
  6335.  
  6336. To get back into vi from \"input\" mode, you must issue this command again.
  6337. Therefore, it is recommended that you assign it to a key.
  6338.  
  6339. Major differences between this mode and real vi :
  6340.  
  6341. * Limitations and unsupported features
  6342.   - Search patterns with line offset (e.g. /pat/+3 or /pat/z.) are
  6343.     not supported.
  6344.   - Ex commands are not implemented; try ':' to get some hints.
  6345.   - No line undo (i.e. the 'U' command), but multi-undo is a standard feature.
  6346.  
  6347. * Modifications
  6348.   - The stopping positions for some point motion commands (word boundary,
  6349.     pattern search) are slightly different from standard 'vi'.
  6350.     Also, no automatic wrap around at end of buffer for pattern searching.
  6351.   - Since changes are done in two steps (deletion then insertion), you need
  6352.     to undo twice to completely undo a change command.  But this is not needed
  6353.     for undoing a repeated change command.
  6354.   - No need to set/unset 'magic', to search for a string with regular expr
  6355.     in it just put a prefix arg for the search commands.  Replace cmds too.
  6356.   - ^R is bound to incremental backward search, so use ^L to redraw screen.
  6357.  
  6358. * Extensions
  6359.   - Some standard (or modified) Emacs commands were integrated, such as
  6360.     incremental search, query replace, transpose objects, and keyboard macros.
  6361.   - In command state, ^X links to the 'ctl-x-map', and ESC can be linked to
  6362.     esc-map or set undefined.  These can give you the full power of Emacs.
  6363.   - See vi-com-map for those keys that are extensions to standard vi, e.g.
  6364.     `vi-name-last-change-or-macro', `vi-verify-spelling', `vi-locate-def',
  6365.     `vi-mark-region', and 'vi-quote-words'.  Some of them are quite handy.
  6366.   - Use \\[vi-switch-mode] to switch among different modes quickly.
  6367.   
  6368. Syntax table and abbrevs while in vi mode remain as they were in Emacs." t nil)
  6369.  
  6370. ;;;***
  6371.  
  6372. ;;;### (autoloads (view-mode view-buffer-other-window view-buffer view-file-other-window view-file) "view" "view.el" (11680 45210))
  6373. ;;; Generated autoloads from view.el
  6374.  
  6375. (autoload (quote view-file) "view" "\
  6376. View FILE in View mode, returning to previous buffer when done.
  6377. The usual Emacs commands are not available; instead,
  6378. a special set of commands (mostly letters and punctuation)
  6379. are defined for moving around in the buffer.
  6380. Space scrolls forward, Delete scrolls backward.
  6381. For list of all View commands, type ? or h while viewing.
  6382.  
  6383. This command runs the normal hook `view-mode-hook'." t nil)
  6384.  
  6385. (autoload (quote view-file-other-window) "view" "\
  6386. View FILE in View mode in other window.
  6387. Return to previous buffer when done.
  6388. The usual Emacs commands are not available; instead,
  6389. a special set of commands (mostly letters and punctuation)
  6390. are defined for moving around in the buffer.
  6391. Space scrolls forward, Delete scrolls backward.
  6392. For list of all View commands, type ? or h while viewing.
  6393.  
  6394. This command runs the normal hook `view-mode-hook'." t nil)
  6395.  
  6396. (autoload (quote view-buffer) "view" "\
  6397. View BUFFER in View mode, returning to previous buffer when done.
  6398. The usual Emacs commands are not available; instead,
  6399. a special set of commands (mostly letters and punctuation)
  6400. are defined for moving around in the buffer.
  6401. Space scrolls forward, Delete scrolls backward.
  6402. For list of all View commands, type ? or h while viewing.
  6403.  
  6404. This command runs the normal hook `view-mode-hook'." t nil)
  6405.  
  6406. (autoload (quote view-buffer-other-window) "view" "\
  6407. View BUFFER in View mode in another window,
  6408. returning to original buffer when done *only* if 
  6409. prefix argument NOT-RETURN is nil (which is the default).
  6410.  
  6411. The usual Emacs commands are not available in View mode; instead,
  6412. a special set of commands (mostly letters and punctuation)
  6413. are defined for moving around in the buffer.
  6414. Space scrolls forward, Delete scrolls backward.
  6415. For list of all View commands, type ? or h while viewing.
  6416.  
  6417. This command runs the normal hook `view-mode-hook'." t nil)
  6418.  
  6419. (autoload (quote view-mode) "view" "\
  6420. Major mode for viewing text but not editing it.
  6421. Letters do not insert themselves.  Instead these commands are provided.
  6422. Most commands take prefix arguments.  Commands dealing with lines
  6423. default to \"scroll size\" lines (initially size of window).
  6424. Search commands default to a repeat count of one.
  6425. M-< or <    move to beginning of buffer.
  6426. M-> or >    move to end of buffer.
  6427. C-v or Space    scroll forward lines.
  6428. M-v or DEL    scroll backward lines.
  6429. CR or LF    scroll forward one line (backward with prefix argument).
  6430. z        like Space except set number of lines for further
  6431.            scrolling commands to scroll by.
  6432. C-u and Digits    provide prefix arguments.  `-' denotes negative argument.
  6433. =        prints the current line number.
  6434. g        goes to line given by prefix argument.
  6435. / or M-C-s    searches forward for regular expression
  6436. \\ or M-C-r    searches backward for regular expression.
  6437. n        searches forward for last regular expression.
  6438. p        searches backward for last regular expression.
  6439. C-@ or .    set the mark.
  6440. x        exchanges point and mark.
  6441. C-s or s    do forward incremental search.
  6442. C-r or r    do reverse incremental search.
  6443. @ or '        return to mark and pops mark ring.
  6444.           Mark ring is pushed at start of every
  6445.           successful search and when jump to line to occurs.
  6446.           The mark is set on jump to buffer start or end.
  6447. ? or h        provide help message (list of commands).
  6448. \\[Helper-help]        provides help (list of commands or description of a command).
  6449. C-n        moves down lines vertically.
  6450. C-p        moves upward lines vertically.
  6451. C-l        recenters the screen.
  6452. q or C-c    exit view-mode and return to previous buffer.
  6453.  
  6454. Entry to this mode runs the normal hook `view-mode-hook'.
  6455.  
  6456. \\{view-mode-map}" nil nil)
  6457.  
  6458. ;;;***
  6459.  
  6460. ;;;### (autoloads (vip-mode) "vip" "vip.el" (11545 9296))
  6461. ;;; Generated autoloads from vip.el
  6462.  
  6463. (autoload (quote vip-mode) "vip" "\
  6464. Turn on VIP emulation of VI." t nil)
  6465.  
  6466. ;;;***
  6467.  
  6468. ;;;### (autoloads (wordstar-mode) "ws-mode" "ws-mode.el" (11684 27268))
  6469. ;;; Generated autoloads from ws-mode.el
  6470.  
  6471. (autoload (quote wordstar-mode) "ws-mode" "\
  6472. Major mode with WordStar-like key bindings.
  6473.  
  6474. BUGS:
  6475.  - Help menus with WordStar commands (C-j just calls help-for-help)
  6476.    are not implemented
  6477.  - Options for search and replace
  6478.  - Show markers (C-k h) is somewhat strange
  6479.  - Search and replace (C-q a) is only available in forward direction
  6480.  
  6481. No key bindings beginning with ESC are installed, they will work
  6482. Emacs-like.
  6483.  
  6484. The key bindings are:
  6485.  
  6486.   C-a        backward-word
  6487.   C-b        fill-paragraph
  6488.   C-c        scroll-up-line
  6489.   C-d        forward-char
  6490.   C-e        previous-line
  6491.   C-f        forward-word
  6492.   C-g        delete-char
  6493.   C-h        backward-char
  6494.   C-i        indent-for-tab-command
  6495.   C-j        help-for-help
  6496.   C-k        ordstar-C-k-map
  6497.   C-l        ws-repeat-search
  6498.   C-n        open-line
  6499.   C-p        quoted-insert
  6500.   C-r        scroll-down-line
  6501.   C-s        backward-char
  6502.   C-t        kill-word
  6503.   C-u        keyboard-quit
  6504.   C-v        overwrite-mode
  6505.   C-w        scroll-down
  6506.   C-x        next-line
  6507.   C-y        kill-complete-line
  6508.   C-z        scroll-up
  6509.  
  6510.   C-k 0        ws-set-marker-0
  6511.   C-k 1        ws-set-marker-1
  6512.   C-k 2        ws-set-marker-2
  6513.   C-k 3        ws-set-marker-3
  6514.   C-k 4        ws-set-marker-4
  6515.   C-k 5        ws-set-marker-5
  6516.   C-k 6        ws-set-marker-6
  6517.   C-k 7        ws-set-marker-7
  6518.   C-k 8        ws-set-marker-8
  6519.   C-k 9        ws-set-marker-9
  6520.   C-k b        ws-begin-block
  6521.   C-k c        ws-copy-block
  6522.   C-k d        save-buffers-kill-emacs
  6523.   C-k f        find-file
  6524.   C-k h        ws-show-markers
  6525.   C-k i        ws-indent-block
  6526.   C-k k        ws-end-block
  6527.   C-k p        ws-print-block
  6528.   C-k q        kill-emacs
  6529.   C-k r        insert-file
  6530.   C-k s        save-some-buffers
  6531.   C-k t        ws-mark-word
  6532.   C-k u        ws-exdent-block
  6533.   C-k C-u    keyboard-quit
  6534.   C-k v        ws-move-block
  6535.   C-k w        ws-write-block
  6536.   C-k x        kill-emacs
  6537.   C-k y        ws-delete-block
  6538.  
  6539.   C-o c        center-line
  6540.   C-o b        switch-to-buffer
  6541.   C-o j        justify-current-line
  6542.   C-o k        kill-buffer
  6543.   C-o l        list-buffers
  6544.   C-o m        auto-fill-mode
  6545.   C-o r        set-fill-column
  6546.   C-o C-u    keyboard-quit
  6547.   C-o wd    delete-other-windows
  6548.   C-o wh    split-window-horizontally
  6549.   C-o wo    other-window
  6550.   C-o wv    split-window-vertically
  6551.  
  6552.   C-q 0        ws-find-marker-0
  6553.   C-q 1        ws-find-marker-1
  6554.   C-q 2        ws-find-marker-2
  6555.   C-q 3        ws-find-marker-3
  6556.   C-q 4        ws-find-marker-4
  6557.   C-q 5        ws-find-marker-5
  6558.   C-q 6        ws-find-marker-6
  6559.   C-q 7        ws-find-marker-7
  6560.   C-q 8        ws-find-marker-8
  6561.   C-q 9        ws-find-marker-9
  6562.   C-q a        ws-query-replace
  6563.   C-q b        ws-to-block-begin
  6564.   C-q c        end-of-buffer
  6565.   C-q d        end-of-line
  6566.   C-q f        ws-search
  6567.   C-q k        ws-to-block-end
  6568.   C-q l        ws-undo
  6569.   C-q p        ws-last-cursorp
  6570.   C-q r        beginning-of-buffer
  6571.   C-q C-u    keyboard-quit
  6572.   C-q w        ws-last-error
  6573.   C-q y        ws-kill-eol
  6574.   C-q DEL    ws-kill-bol
  6575. " t nil)
  6576.  
  6577. ;;;***
  6578.  
  6579. ;;;### (autoloads (run-scheme) "xscheme" "xscheme.el" (11506 25887))
  6580. ;;; Generated autoloads from xscheme.el
  6581.  
  6582. (autoload (quote run-scheme) "xscheme" "\
  6583. Run an inferior Scheme process.
  6584. Output goes to the buffer `*scheme*'.
  6585. With argument, asks for a command line." t nil)
  6586.  
  6587. ;;;***
  6588.  
  6589. ;;;### (autoloads (psychoanalyze-pinhead insert-zippyism yow) "yow" "yow.el" (11710 1001))
  6590. ;;; Generated autoloads from yow.el
  6591.  
  6592. (autoload (quote yow) "yow" "\
  6593. Return or display a random Zippy quotation.  With prefix arg, insert it." t nil)
  6594.  
  6595. (autoload (quote insert-zippyism) "yow" "\
  6596. Prompt with completion for a known Zippy quotation, and insert it at point." t nil)
  6597.  
  6598. (autoload (quote psychoanalyze-pinhead) "yow" "\
  6599. Zippy goes to the analyst." t nil)
  6600.  
  6601. ;;;***
  6602.  
  6603. ;;; Don't make backup versions of this file - most of it is generated
  6604. ;;; automatically by autoload.el, and what isn't changes rarely.
  6605. ;;; Local Variables:
  6606. ;;; version-control: never
  6607. ;;; no-byte-compile: t
  6608. ;;; no-update-autoloads: t
  6609. ;;; End:
  6610. ;;; loaddefs.el ends here
  6611.